From 30e861d32065a1cd3a792729509c1594c9da35b2 Mon Sep 17 00:00:00 2001 From: OzGav Date: Sun, 3 Aug 2025 18:37:32 +1000 Subject: [PATCH] Add URL example (#2287) --- music_assistant/providers/audiobookshelf/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/music_assistant/providers/audiobookshelf/__init__.py b/music_assistant/providers/audiobookshelf/__init__.py index 97e21b2c..c79766d6 100644 --- a/music_assistant/providers/audiobookshelf/__init__.py +++ b/music_assistant/providers/audiobookshelf/__init__.py @@ -128,7 +128,8 @@ async def get_config_entries( type=ConfigEntryType.STRING, label="Server", required=True, - description="The url of the Audiobookshelf server to connect to.", + description="The URL of the Audiobookshelf server to connect to. For example " + "https://abs.domain.tld/ or http://192.168.1.4:13378/", ), ConfigEntry( key=CONF_USERNAME, @@ -149,7 +150,8 @@ async def get_config_entries( type=ConfigEntryType.SECURE_STRING, label="Token _instead_ of user/ password.", required=False, - description="Instead of using username and password, you may provide the user's token." + description="Instead of using a username and password, " + "you may provide the user's token." "\nThe token can be seen in Audiobookshelf as an admin user in Settings -> Users.", ), ConfigEntry( -- 2.34.1