TVStore: Throw exception

This commit is contained in:
flightlevel
2019-03-03 15:09:51 +11:00
parent 82617f961d
commit b445072a4d

View File

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