mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fixes #92 - Profile & Level args typo
This commit is contained in:
parent
8f7981b6a6
commit
874244a2ef
@ -160,7 +160,7 @@ namespace MediaBrowser.Api.Playback.Hls
|
|||||||
|
|
||||||
if (!string.IsNullOrEmpty(state.VideoRequest.Level))
|
if (!string.IsNullOrEmpty(state.VideoRequest.Level))
|
||||||
{
|
{
|
||||||
args += " -level 3" + state.VideoRequest.Level;
|
args += " -level " + state.VideoRequest.Level;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (state.SubtitleStream != null)
|
if (state.SubtitleStream != null)
|
||||||
|
@ -153,7 +153,7 @@ namespace MediaBrowser.Api.Playback.Progressive
|
|||||||
|
|
||||||
if (!string.IsNullOrEmpty(state.VideoRequest.Level))
|
if (!string.IsNullOrEmpty(state.VideoRequest.Level))
|
||||||
{
|
{
|
||||||
args += " -level 3" + state.VideoRequest.Level;
|
args += " -level " + state.VideoRequest.Level;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (state.SubtitleStream != null)
|
if (state.SubtitleStream != null)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user