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

Fixed: Ignore case when comparing torrent infohash

(cherry picked from commit 7986488c6d1687b0810b3bcac2c1dae725e770ac)
pull/2859/head
Qstick 2 years ago
parent 9d67c18254
commit 1ad84a7c44

@ -122,7 +122,7 @@ namespace NzbDrone.Core.Blocklisting
{
if (release.InfoHash.IsNotNullOrWhiteSpace())
{
return release.InfoHash.Equals(item.TorrentInfoHash);
return release.InfoHash.Equals(item.TorrentInfoHash, StringComparison.InvariantCultureIgnoreCase);
}
return HasSameIndexer(item, release.Indexer);

Loading…
Cancel
Save