update to web interface
Local Docker Build (Dev) / build-dev (push) Successful in 5s

This commit is contained in:
2025-11-03 09:30:50 -05:00
parent d414da5bf3
commit c2c720cd8b
4 changed files with 181 additions and 26 deletions
+9 -1
View File
@@ -45,16 +45,24 @@ def map_source_to_description(source: str) -> str:
elif "omdb:" in source_lower:
return "OMDb Release"
# Sonarr sources
elif "sonarr:" in source_lower:
return "Sonarr API"
# Manual and other sources
elif "manual" in source_lower:
return "Manual Entry"
elif "digital_release" in source_lower:
return "Digital Release"
elif "nfo_file_existing" in source_lower:
return "NFO File (Legacy)"
elif "nfo:" in source_lower:
return "NFO File"
elif "webhook:" in source_lower:
return "Webhook/API"
elif "database" in source_lower:
return "Database"
# Fallback for unknown patterns
return source.title()