1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Fixed: CRC32 being parsed as release group

Closes #4449
This commit is contained in:
Mark McDowall
2021-04-19 21:58:55 -07:00
parent 3f8bb24b75
commit 6079f1ef11
2 changed files with 7 additions and 1 deletions
@@ -101,5 +101,11 @@ namespace NzbDrone.Core.Test.ParserTests
{
Parser.Parser.ParseReleaseGroup(title).Should().Be(expected);
}
[TestCase("Terrible.Anime.Title.001.DBOX.480p.x264-iKaos [v3] [6AFFEF6B]")]
public void should_not_parse_anime_hash_as_release_group(string title)
{
Parser.Parser.ParseReleaseGroup(title).Should().BeNull();
}
}
}