revised the framerate fix
This commit is contained in:
parent
33c8de1ecd
commit
d4797820db
|
@ -266,9 +266,12 @@ namespace MediaBrowser.Controller.Providers.MediaInfo
|
|||
|
||||
if (parts.Length == 2)
|
||||
{
|
||||
result = float.Parse(parts[0]) / float.Parse(parts[1]);
|
||||
result = float.Parse(parts[0])/float.Parse(parts[1]);
|
||||
}
|
||||
else
|
||||
{
|
||||
result = float.Parse(parts[0]);
|
||||
}
|
||||
result = float.Parse(parts[0]);
|
||||
|
||||
return float.IsNaN(result) ? (float?)null : result;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user