provide more technical track details in the ui

Fixes #15
This commit is contained in:
Kamil
2024-11-27 16:03:39 +00:00
parent da2b725b22
commit ddf73b77db
8 changed files with 153 additions and 6 deletions

View File

@@ -163,4 +163,10 @@ app.logger.debug(f"Debug logging active")
from app import routes
from app import jellyfin_routes, tasks
if "worker" in sys.argv:
tasks.release_lock("download_missing_tracks_lock")
tasks.release_lock("download_missing_tracks_lock")
from app import filters # Import the filters dictionary
# Register all filters
for name, func in filters.filters.items():
app.jinja_env.filters[name] = func