1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

Fixed: Prevent misinterpreting Season folder as anime release title

This commit is contained in:
Taloth Saldono
2020-08-10 23:57:54 +02:00
parent f3101a1db2
commit e6175581bd
2 changed files with 18 additions and 0 deletions
@@ -92,5 +92,12 @@ namespace NzbDrone.Core.Test.ParserTests
result.IsPartialSeason.Should().BeFalse();
result.IsMultiSeason.Should().BeTrue();
}
[Test]
public void should_not_parse_season_folders()
{
var result = Parser.Parser.ParseTitle("Season 3");
result.Should().BeNull();
}
}
}