Skip to content

Commit

Permalink
db.py - remove_epg_db: Catch/skip all errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsettrack4 committed Jan 9, 2024
1 parent 557fdea commit 9b34eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/db.py
Expand Up @@ -78,7 +78,7 @@ def remove_epg_db(self, provider, pre_load):
try:
self.c.execute("""DROP TABLE {}""".format(f"pre_{provider}" if pre_load else provider))
self.confirm_update()
except sqlite3.OperationalError:
except:
pass
return

Expand Down

0 comments on commit 9b34eee

Please sign in to comment.