refactor(web_api): wrap default_dir with Path in settings path construction

This commit is contained in:
bobokun 2025-09-08 16:36:25 -04:00
parent 397049e46c
commit cd138b32cc
No known key found for this signature in database
GPG key ID: B73932169607D927
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
4.6.1-develop23
4.6.1-develop24

View file

@ -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: