mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-07 02:31:47 +01:00
Fix incorrect calculation of content length
This commit is contained in:
parent
e0e6c98e43
commit
93346830eb
1 changed files with 1 additions and 1 deletions
|
|
@ -383,7 +383,7 @@ namespace MediaBrowser.Api.Playback.Progressive
|
|||
|
||||
if (totalBitrate > 0 && state.RunTimeTicks.HasValue)
|
||||
{
|
||||
return Convert.ToInt64(totalBitrate * TimeSpan.FromTicks(state.RunTimeTicks.Value).TotalSeconds);
|
||||
return Convert.ToInt64(totalBitrate * TimeSpan.FromTicks(state.RunTimeTicks.Value).TotalSeconds / 8);
|
||||
}
|
||||
|
||||
return null;
|
||||
|
|
|
|||
Loading…
Reference in a new issue