Skip to content

Commit

Permalink
Do not replace locked fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadowghost committed Jun 5, 2024
1 parent c7ce1aa commit 8f7df59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MediaBrowser.Providers/Manager/MetadataService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ internal static void MergeBaseItemData(
target.IsLocked = target.IsLocked || source.IsLocked;
}

if (replaceData || target.LockedFields.Length == 0)
if (target.LockedFields.Length == 0)
{
target.LockedFields = source.LockedFields;
}
Expand Down

0 comments on commit 8f7df59

Please sign in to comment.