From cb1b0612977a70762147ee3296033b8962b5ee92 Mon Sep 17 00:00:00 2001 From: Xoconoch Date: Sat, 23 Aug 2025 10:47:28 -0600 Subject: [PATCH] fix: Added actual versioning in main.json config file --- routes/migrations/runner.py | 2 -- routes/utils/celery_config.py | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/routes/migrations/runner.py b/routes/migrations/runner.py index ae25275..677e64e 100644 --- a/routes/migrations/runner.py +++ b/routes/migrations/runner.py @@ -286,7 +286,6 @@ def _update_watch_playlists_db(conn: sqlite3.Connection) -> None: EXPECTED_PLAYLIST_TRACKS_COLUMNS, f"playlist tracks ({table_name})", ) - logger.info("Upgraded watch playlists DB to 3.2.0 base schema") except Exception: logger.error( "Failed to upgrade watch playlists DB to 3.2.0 base schema", exc_info=True @@ -349,7 +348,6 @@ def _update_watch_artists_db(conn: sqlite3.Connection) -> None: EXPECTED_ARTIST_ALBUMS_COLUMNS, f"artist albums ({table_name})", ) - logger.info("Upgraded watch artists DB to 3.2.0 base schema") except Exception: logger.error( "Failed to upgrade watch artists DB to 3.2.0 base schema", exc_info=True diff --git a/routes/utils/celery_config.py b/routes/utils/celery_config.py index 70fd3a3..9adda41 100644 --- a/routes/utils/celery_config.py +++ b/routes/utils/celery_config.py @@ -28,6 +28,7 @@ CONFIG_FILE_PATH = Path("./data/config/main.json") DEFAULT_MAIN_CONFIG = { "service": "spotify", + "version": "3.2.2", "spotify": "", "deezer": "", "fallback": False,