Skip to content

Commit 803b92a

Browse files
committed
fix fmt
1 parent 31ea6b2 commit 803b92a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

connect/src/spirc.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1275,7 +1275,8 @@ impl SpircTask {
12751275
last.position_as_of_timestamp
12761276
};
12771277

1278-
let position_delta = (state.position_as_of_timestamp as i64 - expected_position as i64).abs();
1278+
let position_delta =
1279+
(state.position_as_of_timestamp as i64 - expected_position as i64).abs();
12791280
if position_delta > 5000 {
12801281
PlayerUpdateReason::SeekChanged
12811282
} else {

0 commit comments

Comments
 (0)