1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-23 14:41:27 +00:00

Fix checking for SameTorrent when the indexer is null

This commit is contained in:
Bogdan 2023-05-01 07:57:42 +03:00 committed by Mark McDowall
parent f32a3cd41c
commit 3ece1533d8

View file

@ -125,7 +125,7 @@ namespace NzbDrone.Core.Blocklisting
return release.InfoHash.Equals(item.TorrentInfoHash);
}
return item.Indexer.Equals(release.Indexer, StringComparison.InvariantCultureIgnoreCase);
return HasSameIndexer(item, release.Indexer);
}
private bool HasSameIndexer(Blocklist item, string indexer)