Preserve 3D format on metadata refresh (#14742)

This commit is contained in:
theguymadmax
2025-09-06 13:38:00 -04:00
committed by GitHub
parent 6ac2d707cb
commit e043f93a72
2 changed files with 12 additions and 2 deletions

View File

@@ -1279,7 +1279,7 @@ namespace MediaBrowser.Providers.Manager
{
if (source is Video sourceCast && target is Video targetCast)
{
if (replaceData || !targetCast.Video3DFormat.HasValue)
if (sourceCast.Video3DFormat.HasValue && (replaceData || !targetCast.Video3DFormat.HasValue))
{
targetCast.Video3DFormat = sourceCast.Video3DFormat;
}