Comment and simplify code

This commit is contained in:
Balázs Váradi 2021-02-08 18:56:06 +01:00
parent b646787ab6
commit 094ffafb24

View File

@ -51,6 +51,7 @@ namespace MediaBrowser.XbmcMetadata.Parsers
// These are not going to be valid xml so no sense in causing the provider to fail and spamming the log with exceptions // These are not going to be valid xml so no sense in causing the provider to fail and spamming the log with exceptions
try try
{ {
// Extract episode details from the firs episodedetails block
using (var stringReader = new StringReader(xml)) using (var stringReader = new StringReader(xml))
using (var reader = XmlReader.Create(stringReader, settings)) using (var reader = XmlReader.Create(stringReader, settings))
{ {
@ -72,19 +73,14 @@ namespace MediaBrowser.XbmcMetadata.Parsers
} }
} }
} }
}
catch (XmlException)
{
}
while ((index = xmlFile.IndexOf(srch, StringComparison.OrdinalIgnoreCase)) != -1) // Extract the last episode number from nfo
{ // This is needed because XBMC metadata uses multiple episodedetails blocks instead of episodenumberend tag
xml = xmlFile.Substring(0, index + srch.Length); while ((index = xmlFile.IndexOf(srch, StringComparison.OrdinalIgnoreCase)) != -1)
xmlFile = xmlFile.Substring(index + srch.Length);
// These are not going to be valid xml so no sense in causing the provider to fail and spamming the log with exceptions
try
{ {
xml = xmlFile.Substring(0, index + srch.Length);
xmlFile = xmlFile.Substring(index + srch.Length);
using (var stringReader = new StringReader(xml)) using (var stringReader = new StringReader(xml))
using (var reader = XmlReader.Create(stringReader, settings)) using (var reader = XmlReader.Create(stringReader, settings))
{ {
@ -104,9 +100,9 @@ namespace MediaBrowser.XbmcMetadata.Parsers
} }
} }
} }
catch (XmlException) }
{ catch (XmlException)
} {
} }
} }
} }