refactor: Replaced all modulo usages of tick_until_poll with is_multiple_of

This commit is contained in:
2025-12-12 09:20:05 -07:00
parent ae506789ab
commit 3e133fa147
20 changed files with 26 additions and 23 deletions
+1 -1
View File
@@ -185,7 +185,7 @@ impl App<'_> {
}
}
if self.tick_count % self.tick_until_poll == 0 {
if self.tick_count.is_multiple_of(self.tick_until_poll) {
self.refresh_radarr_metadata().await;
}
}