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

@@ -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)