From 17d44333ae364316eb1d694ef00953911892ad2d Mon Sep 17 00:00:00 2001 From: Bram Kelchtermans Date: Wed, 30 Apr 2025 20:29:46 +0200 Subject: [PATCH] buh --- Dockers/puppeteer-api/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockers/puppeteer-api/main.py b/Dockers/puppeteer-api/main.py index 013beeb..923bb32 100644 --- a/Dockers/puppeteer-api/main.py +++ b/Dockers/puppeteer-api/main.py @@ -54,7 +54,7 @@ def init_db(): except sqlite3.OperationalError as e: print(f"Error initializing database: {e}") # Fallback to using a local database file if the mounted volume has permission issues - db_path = './db/cache.db' + db_path = 'db/cache.db' print(f"Falling back to local database file: {db_path}") conn = sqlite3.connect(db_path) cursor = conn.cursor()