diff options
| author | Jakub Schmidtke <sjakub@gmail.com> | 2026-07-08 01:40:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-08 01:40:26 +0200 |
| commit | 08f6627a24083288a1450c7af62128371b634454 (patch) | |
| tree | 1685d46de8d29e665258703e81e36293a556347e /Emby.Server.Implementations/Library/PathExtensions.cs | |
| parent | 1294990f4fa93b30ec9699d18af4de1cd1d562b8 (diff) | |
Replaced string.Empty with ReadOnlySpan<char>.Empty
Diffstat (limited to 'Emby.Server.Implementations/Library/PathExtensions.cs')
| -rw-r--r-- | Emby.Server.Implementations/Library/PathExtensions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/PathExtensions.cs b/Emby.Server.Implementations/Library/PathExtensions.cs index 8815e2785a..7d0f3900c5 100644 --- a/Emby.Server.Implementations/Library/PathExtensions.cs +++ b/Emby.Server.Implementations/Library/PathExtensions.cs @@ -36,7 +36,7 @@ namespace Emby.Server.Implementations.Library _ when attribute.Equals("tmdbid", StringComparison.OrdinalIgnoreCase) => "tmdb", _ when attribute.Equals("tvdbid", StringComparison.OrdinalIgnoreCase) => "tvdb", _ when attribute.Equals("imdbid", StringComparison.OrdinalIgnoreCase) => "imdb", - _ => string.Empty + _ => ReadOnlySpan<char>.Empty }; for (int strIndex = 0, attributeIndex = 0; attributeIndex > -1;) |
