Skip to content

Commit 7d3c17a

Browse files
committed
fix: bad conjunction
1 parent efd1abb commit 7d3c17a

File tree

1 file changed

+1
-1
lines changed
  • bathbot/src/tracking/osu

1 file changed

+1
-1
lines changed

bathbot/src/tracking/osu/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ impl OsuTracking {
8181
last_ended_at = %last_updated.format(NAIVE_DATETIME_FORMAT).unwrap(),
8282
);
8383

84-
if last_pp > pp && last_updated >= score.ended_at {
84+
if last_pp > pp || last_updated >= score.ended_at {
8585
return;
8686
}
8787

0 commit comments

Comments
 (0)