aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2026-02-23 17:01:38 +0100
committerShadowghost <Ghost_of_Stone@web.de>2026-02-23 17:01:38 +0100
commit34c1e45bc2e496e9589775576c0f0a99e9159a0c (patch)
tree6a65eb1758d4d2a9a7ed58109e3080e62eb85402 /Emby.Server.Implementations
parentea0641b659fd6a3290453d3d70d5d82e63eb397d (diff)
Fixup
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/Library/LibraryManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs
index 88d29b73c9..c0782c8f9b 100644
--- a/Emby.Server.Implementations/Library/LibraryManager.cs
+++ b/Emby.Server.Implementations/Library/LibraryManager.cs
@@ -447,7 +447,7 @@ namespace Emby.Server.Implementations.Library
foreach (var alternate in alternateVersions.Skip(1))
{
alternate.SetPrimaryVersionId(newPrimary.Id);
- alternate.OwnerId = newPrimary.Id;
+ alternate.OwnerId = Guid.Empty;
alternate.UpdateToRepositoryAsync(ItemUpdateType.MetadataEdit, CancellationToken.None).GetAwaiter().GetResult();
}
}