From 5787ab15dc297da6d2e1ec984ccf19751ed85db6 Mon Sep 17 00:00:00 2001 From: Cody Robibero Date: Sun, 27 Nov 2022 08:02:32 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Bond-009 --- Jellyfin.Api/Helpers/DynamicHlsHelper.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jellyfin.Api/Helpers/DynamicHlsHelper.cs b/Jellyfin.Api/Helpers/DynamicHlsHelper.cs index 853fbe89d5..ee672cab4e 100644 --- a/Jellyfin.Api/Helpers/DynamicHlsHelper.cs +++ b/Jellyfin.Api/Helpers/DynamicHlsHelper.cs @@ -199,7 +199,7 @@ namespace Jellyfin.Api.Helpers { // Provide a workaround for the case issue between flac and fLaC. var flacWaPlaylist = ApplyFlacCaseWorkaround(state, basicPlaylist.ToString()); - if (!String.IsNullOrEmpty(flacWaPlaylist)) + if (!string.IsNullOrEmpty(flacWaPlaylist)) { builder.Append(flacWaPlaylist); } @@ -226,7 +226,7 @@ namespace Jellyfin.Api.Helpers // Provide a workaround for the case issue between flac and fLaC. flacWaPlaylist = ApplyFlacCaseWorkaround(state, sdrPlaylist.ToString()); - if (!String.IsNullOrEmpty(flacWaPlaylist)) + if (!string.IsNullOrEmpty(flacWaPlaylist)) { builder.Append(flacWaPlaylist); } @@ -262,7 +262,7 @@ namespace Jellyfin.Api.Helpers // Provide a workaround for the case issue between flac and fLaC. flacWaPlaylist = ApplyFlacCaseWorkaround(state, newPlaylist); - if (!String.IsNullOrEmpty(flacWaPlaylist)) + if (!string.IsNullOrEmpty(flacWaPlaylist)) { builder.Append(flacWaPlaylist); }