We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4125c34 commit f587e1aCopy full SHA for f587e1a
Jellyfin.Plugin.Newsletters/Scanner/Scraper.cs
@@ -161,6 +161,12 @@ public void BuildObjs(List<BaseItem> items, string type)
161
logger.Debug(episode.PhysicalLocations[0]); // Filepath
162
logger.Debug("---------------");
163
}
164
+ catch (IndexOutOfRangeException iore)
165
+ {
166
+ logger.Error($"Physical location of file could not be found.. Turn on debug mode to see more information!");
167
+ logger.Error(iore);
168
+ continue;
169
+ }
170
catch (Exception e)
171
{
172
logger.Error("Error processing your file..");
0 commit comments