diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2026-01-31 23:44:07 +0100 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2026-01-31 23:45:38 +0100 |
| commit | 09a729effe1c0eeccd3bbc7482923b4d1cdabfc1 (patch) | |
| tree | 6e4cece5eac29c5e0252724fff2d868786177a78 /Jellyfin.Server/Migrations | |
| parent | 2789532aa88ccc899ff8497537642e1d78b31ef5 (diff) | |
Fix tag checks
Diffstat (limited to 'Jellyfin.Server/Migrations')
| -rw-r--r-- | Jellyfin.Server/Migrations/Routines/RefreshCleanNames.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/RefreshCleanNames.cs b/Jellyfin.Server/Migrations/Routines/RefreshCleanNames.cs index eadabf6776..4b5659cd6c 100644 --- a/Jellyfin.Server/Migrations/Routines/RefreshCleanNames.cs +++ b/Jellyfin.Server/Migrations/Routines/RefreshCleanNames.cs @@ -61,7 +61,7 @@ public class RefreshCleanNames : IAsyncMigrationRoutine { try { - var newCleanName = string.IsNullOrWhiteSpace(item.Name) ? string.Empty : BaseItemRepository.GetCleanValue(item.Name); + var newCleanName = string.IsNullOrWhiteSpace(item.Name) ? string.Empty : item.Name.GetCleanValue(); if (!string.Equals(newCleanName, item.CleanName, StringComparison.Ordinal)) { _logger.LogDebug( |
