mirror of
https://github.com/Lidarr/Lidarr.git
synced 2026-01-03 03:39:59 -06:00
Fixed: Properly detect failed responses from Navidrome
This commit is contained in:
@@ -105,7 +105,7 @@ namespace NzbDrone.Core.Notifications.Subsonic
|
||||
throw new SubsonicException("Invalid Response, Check Server Settings");
|
||||
}
|
||||
|
||||
if (status == "failed")
|
||||
if (status != "ok")
|
||||
{
|
||||
var ns = xDoc.Root.GetDefaultNamespace();
|
||||
var error = xDoc.Root.Element(XName.Get("error", ns.ToString()));
|
||||
|
||||
Reference in New Issue
Block a user