Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/labrinth/src/queue/server_ping.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ impl ServerPingQueue {
if ping.data.is_none() {
return true;
};
ping.when.signed_duration_since(now)
now.signed_duration_since(ping.when)
> TimeDelta::seconds(
ENV.SERVER_PING_MIN_INTERVAL_SEC as i64,
)
Expand Down
Loading