From b5b1a19f9bd02e782c8c341c2670b07f8280e86a Mon Sep 17 00:00:00 2001 From: Jc2k Date: Sat, 24 Aug 2024 16:38:48 +0100 Subject: [PATCH] Jellyfin: Fix login for some instances (#1601) We weren't using the shared MA ClientSession for the login code. This meant login was hitting some extra YARL validation when instancing a ClientSession for a subpath on a url, causing logins to fail. --- music_assistant/server/providers/jellyfin/manifest.json | 2 +- requirements_all.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/music_assistant/server/providers/jellyfin/manifest.json b/music_assistant/server/providers/jellyfin/manifest.json index e86e08a4..cf9cca56 100644 --- a/music_assistant/server/providers/jellyfin/manifest.json +++ b/music_assistant/server/providers/jellyfin/manifest.json @@ -4,7 +4,7 @@ "name": "Jellyfin Media Server Library", "description": "Support for the Jellyfin streaming provider in Music Assistant.", "codeowners": ["@lokiberra", "@Jc2k"], - "requirements": ["aiojellyfin==0.10.0"], + "requirements": ["aiojellyfin==0.10.1"], "documentation": "https://music-assistant.io/music-providers/jellyfin/", "multi_instance": true } diff --git a/requirements_all.txt b/requirements_all.txt index 5fab497b..ddb2dbe6 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -4,7 +4,7 @@ Brotli>=1.0.9 aiodns>=3.0.0 aiofiles==24.1.0 aiohttp==3.10.4 -aiojellyfin==0.10.0 +aiojellyfin==0.10.1 aiorun==2024.8.1 aioslimproto==3.0.1 aiosonos==0.1.1 -- 2.34.1