feat: Requests / Add to Library Rework - Unmonitored album default + … (#25)

* feat: Requests / Add to Library Rework - Unmonitored album default + Resilience

* checking for source + refresh album logic

* artist monitoring + auto downloading + various request fixes

* synchronous album requests

* format
This commit is contained in:
Harvey
2026-04-06 23:08:58 +01:00
committed by GitHub
parent a3e0b2f65a
commit 343bafd7f4
44 changed files with 2360 additions and 271 deletions
+2 -1
View File
@@ -38,7 +38,8 @@ def get_lidarr_repository() -> "LidarrRepository":
settings = get_settings()
cache = get_cache()
http_client = _get_configured_http_client()
return LidarrRepository(settings, http_client, cache)
request_history_store = get_request_history_store()
return LidarrRepository(settings, http_client, cache, request_history_store=request_history_store)
@singleton