mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
commit
75bb127599
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
@ -170,6 +170,11 @@ namespace Jellyfin.Api.Controllers
|
|||||||
return NotFound("The video either does not exist or the id does not belong to a video.");
|
return NotFound("The video either does not exist or the id does not belong to a video.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (video.LinkedAlternateVersions.Length == 0)
|
||||||
|
{
|
||||||
|
video = (Video)_libraryManager.GetItemById(video.PrimaryVersionId);
|
||||||
|
}
|
||||||
|
|
||||||
foreach (var link in video.GetLinkedAlternateVersions())
|
foreach (var link in video.GetLinkedAlternateVersions())
|
||||||
{
|
{
|
||||||
link.SetPrimaryVersionId(null);
|
link.SetPrimaryVersionId(null);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user