Apply suggestions from code review

String interpolation is preferred.

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
pull/11161/head
Nyanmisaka 2 months ago committed by GitHub
parent 47a77974b8
commit 98debe4817
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1604,7 +1604,7 @@ public class DynamicHlsController : BaseJellyfinApiController
Path.GetFileNameWithoutExtension(outputPath));
}
var hlsArguments = string.Format(CultureInfo.InvariantCulture, "-hls_playlist_type {0} -hls_list_size 0", isEventPlaylist ? "event" : "vod");
var hlsArguments = $"-hls_playlist_type {(isEventPlaylist ? "event" : "vod")} -hls_list_size 0";
return string.Format(
CultureInfo.InvariantCulture,

Loading…
Cancel
Save