diff options
Diffstat (limited to 'code/utils/jellyfin_delete.py')
-rw-r--r-- | code/utils/jellyfin_delete.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/utils/jellyfin_delete.py b/code/utils/jellyfin_delete.py index 6164e40..66af00b 100644 --- a/code/utils/jellyfin_delete.py +++ b/code/utils/jellyfin_delete.py @@ -10,7 +10,7 @@ def delete_accounts(): Delete Jellyfin accounts that have passed their deletion time """ # Get all expired Jellyfin accounts - db = sqlite3.connect("cordarr.db") + db = sqlite3.connect("data/cordarr.db") cursor = db.cursor() cursor.execute( "SELECT jellyfin_user_id FROM jellyfin_accounts WHERE" |