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

Fixed: PendingRelese deletes wrong value on author delete

pull/770/head
Qstick 4 years ago
parent c8263fd856
commit 7cc9a67b74

@ -20,7 +20,7 @@ namespace NzbDrone.Core.Download.Pending
public void DeleteByAuthorId(int authorId)
{
Delete(authorId);
Delete(x => x.AuthorId == authorId);
}
public List<PendingRelease> AllByAuthorId(int authorId)

Loading…
Cancel
Save