From cd138b32cc76fca223737ec6e3d56e6f9b682516 Mon Sep 17 00:00:00 2001 From: bobokun Date: Mon, 8 Sep 2025 16:36:25 -0400 Subject: [PATCH] refactor(web_api): wrap default_dir with Path in settings path construction --- VERSION | 2 +- modules/web_api.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 68e0a96..6f49628 100755 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.6.1-develop23 +4.6.1-develop24 diff --git a/modules/web_api.py b/modules/web_api.py index dbedcf9..e5566cb 100755 --- a/modules/web_api.py +++ b/modules/web_api.py @@ -184,7 +184,7 @@ async def process_queue_periodically(web_api: WebAPI) -> None: async def watch_settings_file(web_api: WebAPI) -> None: """Monitor the settings file for changes and reload authentication settings.""" - settings_path = web_api.default_dir / "qbm_settings.yml" + settings_path = Path(web_api.default_dir) / "qbm_settings.yml" last_hash = None try: