From 8ba49f72f8c9d906323672c150d5955c470e47a3 Mon Sep 17 00:00:00 2001 From: lokiberra <33937467+lokiberra@users.noreply.github.com> Date: Mon, 13 May 2024 17:48:51 -0400 Subject: [PATCH] Remove Requirement for Password for Jellyfin (#1303) --- music_assistant/server/providers/jellyfin/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/server/providers/jellyfin/__init__.py b/music_assistant/server/providers/jellyfin/__init__.py index cf447e44..3e66ec88 100644 --- a/music_assistant/server/providers/jellyfin/__init__.py +++ b/music_assistant/server/providers/jellyfin/__init__.py @@ -140,7 +140,7 @@ async def get_config_entries( key=CONF_PASSWORD, type=ConfigEntryType.SECURE_STRING, label="Password", - required=True, + required=False, description="The password to authenticate to the remote server.", ), ) -- 2.34.1