Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/600a5b194f3243069348a1ae6782122df4a2a718 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: API Exception Error format

pull/747/head
Qstick 6 years ago
parent 117a3970e8
commit 600a5b194f

@ -1,4 +1,4 @@
using System;
using System;
using Nancy;
using Nancy.Responses;
using Lidarr.Http.ErrorManagement;
@ -30,10 +30,10 @@ namespace Lidarr.Http.Exceptions
if (content != null)
{
result = result + " :" + content;
result = $"{result}: {content}";
}
return result;
}
}
}
}

Loading…
Cancel
Save