mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Fixed: PendingRelese deletes wrong value on author delete
This commit is contained in:
@@ -20,7 +20,7 @@ namespace NzbDrone.Core.Download.Pending
|
|||||||
|
|
||||||
public void DeleteByAuthorId(int authorId)
|
public void DeleteByAuthorId(int authorId)
|
||||||
{
|
{
|
||||||
Delete(authorId);
|
Delete(x => x.AuthorId == authorId);
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<PendingRelease> AllByAuthorId(int authorId)
|
public List<PendingRelease> AllByAuthorId(int authorId)
|
||||||
|
|||||||
Reference in New Issue
Block a user