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

Fixed: Old foreign id query too permissive

pull/891/head
ta264 6 years ago
parent 5f679c5f58
commit e9ced07b28

@ -31,7 +31,8 @@ namespace NzbDrone.Core.Music
if (release == null && checkRedirect)
{
release = Query.Where(x => x.OldForeignReleaseIds.Contains(foreignReleaseId))
var id = "\"" + foreignReleaseId + "\"";
release = Query.Where(x => x.OldForeignReleaseIds.Contains(id))
.SingleOrDefault();
}

Loading…
Cancel
Save