Skip to content

Commit

Permalink
Error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Jun 28, 2024
1 parent 4718546 commit b963012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -3985,7 +3985,7 @@ def _process_single_torrent(self, torrent: qbittorrentapi.TorrentDictionary):
torrent.name,
time.time(),
torrent.added_on,
time.time() + timedelta(minutes=self.stalled_delay),
time.time() + timedelta(minutes=self.stalled_delay).seconds,
)
if (
self.stalled_delay > 0
Expand Down

0 comments on commit b963012

Please sign in to comment.