mirror of
https://github.com/Readarr/Readarr.git
synced 2026-09-19 17:53:05 -04:00
Fixed: PendingRelese deletes wrong value on author delete
This commit is contained in:
1 parent
c8263fd856
commit
7cc9a67b74
1 file changed
+1
-1
@@ -20,7 +20,7 @@ public PendingReleaseRepository(IMainDatabase database, IEventAggregator eventAg
|
||||
|
||||
public void DeleteByAuthorId(int authorId)
|
||||
{
|
||||
Delete(authorId);
|
||||
Delete(x => x.AuthorId == authorId);
|
||||
}
|
||||
|
||||
public List<PendingRelease> AllByAuthorId(int authorId)
|
||||
|
||||
Reference in new issue
Block a user