mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-17 11:43:44 +01:00
fixes #1404 - [BUG] Emby recreating old folder name after renaming/moving folder
This commit is contained in:
@@ -508,7 +508,12 @@ namespace MediaBrowser.Server.Implementations.Library
|
||||
.Replace("/", "\\");
|
||||
}
|
||||
|
||||
key = type.FullName + key.ToLower();
|
||||
if (!ConfigurationManager.Configuration.EnableCaseSensitiveItemIds)
|
||||
{
|
||||
key = key.ToLower();
|
||||
}
|
||||
|
||||
key = type.FullName + key;
|
||||
|
||||
return key.GetMD5();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user