Do not replace locked fields

This commit is contained in:
Shadowghost 2024-06-05 19:16:14 +02:00
parent c7ce1aa4c7
commit 8f7df590cd

View File

@ -1103,7 +1103,7 @@ namespace MediaBrowser.Providers.Manager
target.IsLocked = target.IsLocked || source.IsLocked;
}
if (replaceData || target.LockedFields.Length == 0)
if (target.LockedFields.Length == 0)
{
target.LockedFields = source.LockedFields;
}