Skip to content

Commit

Permalink
EntryId fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Dec 4, 2024
1 parent 6602c35 commit 97af337
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -2448,7 +2448,7 @@ def db_update_single_series(
db_commands.execute()
else:
db_commands = self.model_file.delete().where(
self.model_file.EntryId == EntryId
self.model_file.EntryId == episode["id"]
)
db_commands.execute()
else:
Expand Down Expand Up @@ -2811,7 +2811,7 @@ def db_update_single_series(
db_commands.execute()
else:
db_commands = self.model_file.delete().where(
self.model_file.EntryId == EntryId
self.model_file.EntryId == db_entry["id"]
)
db_commands.execute()

Expand Down

0 comments on commit 97af337

Please sign in to comment.