1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-27 22:57:09 -04:00

Fixed: RSS Feeds with no description failing to be added.

Fixes #1231
This commit is contained in:
Leonardo Galli
2018-05-07 18:57:35 +02:00
parent 40d6089a56
commit 58044e0104
5 changed files with 334 additions and 1 deletions
+1 -1
View File
@@ -301,7 +301,7 @@ namespace NzbDrone.Core.Indexers
public static long ParseSize(string sizeString, bool defaultToBinaryPrefix)
{
if (sizeString.All(char.IsDigit))
if (sizeString.Length > 0 && sizeString.All(char.IsDigit))
{
return long.Parse(sizeString);
}