From 54748ad4c9b35ba0cc1c1bac684eb52f9d75a230 Mon Sep 17 00:00:00 2001 From: vincent Date: Mon, 11 Jan 2021 17:56:09 +0100 Subject: [PATCH] change auth option enc by password --- beetsplug/subsonicupdate.py | 2 +- docs/plugins/subsonicupdate.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/subsonicupdate.py b/beetsplug/subsonicupdate.py index c284daa62..2f9dfac9f 100644 --- a/beetsplug/subsonicupdate.py +++ b/beetsplug/subsonicupdate.py @@ -20,7 +20,7 @@ a "subsonic" section like the following: url: https://mydomain.com:443/subsonic user: username pass: password - auth: enc or plain + auth: token or password """ from __future__ import division, absolute_import, print_function diff --git a/docs/plugins/subsonicupdate.rst b/docs/plugins/subsonicupdate.rst index a8e1e537f..7a90d06a2 100644 --- a/docs/plugins/subsonicupdate.rst +++ b/docs/plugins/subsonicupdate.rst @@ -30,6 +30,6 @@ The available options under the ``subsonic:`` section are: - **url**: The Subsonic server resource. Default: ``http://localhost:4040`` - **user**: The Subsonic user. Default: ``admin`` -- **auth**: authentification method token or plain password +- **auth**: Authentication method. Default: ``token``. Use ``password`` for APIs <= 1.12.0. - **pass**: The Subsonic user password. (This may either be a clear-text password or hex-encoded with the prefix ``enc:``.) Default: ``admin``