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

Fixed: Size parsing of empty description from torrent RSS feeds

This commit is contained in:
Mark McDowall
2017-08-14 18:01:56 -07:00
parent c70740e3b6
commit b8001943b4
5 changed files with 67 additions and 0 deletions
@@ -30,6 +30,7 @@ namespace NzbDrone.Core.Test.IndexerTests
[TestCase("100 Kb/s")]
[TestCase(" 12341234")]
[TestCase("12341234 other")]
[TestCase("")]
public void should_not_parse_size(string sizeString)
{
var result = RssParser.ParseSize(sizeString, true);