fix handling of bare nfo's

This commit is contained in:
Luke Pulverenti 2015-03-31 15:33:38 -04:00
parent 2632093ebb
commit 0bcc43098e
4 changed files with 34 additions and 7 deletions

View file

@ -341,7 +341,11 @@ namespace MediaBrowser.Model.Dlna
MediaStream subtitleStream = playlistItem.SubtitleStreamIndex.HasValue ? item.GetMediaStream(MediaStreamType.Subtitle, playlistItem.SubtitleStreamIndex.Value) : null;
MediaStream audioStream = item.GetDefaultAudioStream(options.AudioStreamIndex ?? item.DefaultAudioStreamIndex);
int? audioStreamIndex = audioStream == null ? (int?)null : audioStream.Index;
int? audioStreamIndex = null;
if (audioStream != null)
{
audioStreamIndex = audioStream.Index;
}
MediaStream videoStream = item.VideoStream;

View file

@ -150,7 +150,12 @@ namespace MediaBrowser.Model.Dto
}
}
return numStreams == 0 ? (int?)null : numMatches;
if (numStreams == 0)
{
return null;
}
return numMatches;
}
public bool? IsSecondaryAudio(MediaStream stream)

View file

@ -138,6 +138,20 @@ namespace MediaBrowser.XbmcMetadata.Parsers
xml = xml.Substring(0, index + 1);
}
else
{
// If the file is just an Imdb url, handle that
var imdbId = xml.Split('/')
.FirstOrDefault(i => i.StartsWith("tt", StringComparison.OrdinalIgnoreCase));
if (!string.IsNullOrWhiteSpace(imdbId))
{
item.SetProviderId(MetadataProviders.Imdb, imdbId);
}
return;
}
using (var ms = new MemoryStream())
{

View file

@ -275,6 +275,10 @@ namespace MediaBrowser.XbmcMetadata.Savers
{
}
catch (XmlException ex)
{
Logger.ErrorException("Error reading existng nfo", ex);
}
writer.WriteEndElement();