mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-23 23:20:51 +01:00
Preserve 3D format on metadata refresh (#14742)
This commit is contained in:
parent
6ac2d707cb
commit
e043f93a72
2 changed files with 12 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue