mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-30 20:38:27 +01:00
Changed RunTime to RunTimeInSeconds
This commit is contained in:
parent
7766956274
commit
45cde97a58
@@ -66,7 +66,7 @@ namespace MediaBrowser.TV.Metadata
|
||||
int runtime;
|
||||
if (int.TryParse(text.Split(' ')[0], out runtime))
|
||||
{
|
||||
item.RunTime = TimeSpan.FromMinutes(runtime);
|
||||
item.RunTimeInSeconds = runtime * 60;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user