mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-29 11:58:27 +01:00
updated live tv + nuget
This commit is contained in:
@@ -263,7 +263,8 @@ namespace MediaBrowser.Providers.Movies
|
||||
id = item.GetProviderId(MetadataProviders.Imdb);
|
||||
}
|
||||
|
||||
if (string.IsNullOrEmpty(id))
|
||||
// Don't search for music video id's because it is very easy to misidentify.
|
||||
if (string.IsNullOrEmpty(id) && !(item is MusicVideo))
|
||||
{
|
||||
id = await FindId(item, cancellationToken).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ namespace MediaBrowser.Providers.Savers
|
||||
"LocalTitle",
|
||||
"LockData",
|
||||
"LockedFields",
|
||||
"MediaInfo",
|
||||
"Format3D",
|
||||
"MPAARating",
|
||||
"MusicbrainzId",
|
||||
"MusicBrainzReleaseGroupId",
|
||||
@@ -536,10 +536,6 @@ namespace MediaBrowser.Providers.Savers
|
||||
|
||||
if (video != null && video.Video3DFormat.HasValue)
|
||||
{
|
||||
builder.Append("<MediaInfo>");
|
||||
|
||||
builder.Append("<Video>");
|
||||
|
||||
switch (video.Video3DFormat.Value)
|
||||
{
|
||||
case Video3DFormat.FullSideBySide:
|
||||
@@ -555,10 +551,6 @@ namespace MediaBrowser.Providers.Savers
|
||||
builder.Append("<Format3D>HTAB</Format3D>");
|
||||
break;
|
||||
}
|
||||
|
||||
builder.Append("</Video>");
|
||||
|
||||
builder.Append("</MediaInfo>");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user