Skip to content

Commit

Permalink
Fixed bugs?
Browse files Browse the repository at this point in the history
  • Loading branch information
Swaggeroo committed Mar 29, 2024
1 parent f6afacc commit e91b788
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,13 +224,13 @@ def apply_list(
if item not in new_list:
logging.info(f"Deleting item from bring: {item}")
bring.removeItem(
bring_list["listUuid"], item.encode("utf-8").decode("ISO-8859-9")
bring_list["listUuid"], item.encode("utf-8").decode("utf-8")
)
for item in new_list:
if item not in bring_items:
logging.info(f"Adding item to bring: {item}")
bring.saveItem(
bring_list["listUuid"], item.encode("utf-8").decode("ISO-8859-9")
bring_list["listUuid"], item.encode("utf-8").decode("utf-8")
)

# keep
Expand Down

0 comments on commit e91b788

Please sign in to comment.