TVStore: Throw exception

This commit is contained in:
flightlevel 2019-03-03 15:09:51 +11:00
parent 82617f961d
commit b445072a4d
1 changed files with 3 additions and 1 deletions

View File

@ -224,7 +224,9 @@ namespace Jackett.Common.Indexers
series.Add(sd);
}
catch (IndexOutOfRangeException e)
{ }
{
throw (e);
}
}
}
}