mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-04 06:48:35 +01:00
update dlna profiles
This commit is contained in:
@@ -15,6 +15,7 @@ namespace MediaBrowser.Controller.Entities.Audio
|
||||
public string FormatName { get; set; }
|
||||
public long? Size { get; set; }
|
||||
public string Container { get; set; }
|
||||
public int? TotalBitrate { get; set; }
|
||||
|
||||
public Audio()
|
||||
{
|
||||
|
||||
@@ -129,14 +129,13 @@ namespace MediaBrowser.Controller.Entities
|
||||
return NullTaskResult;
|
||||
}
|
||||
|
||||
private List<LinkedChild> _linkedChildren;
|
||||
/// <summary>
|
||||
/// Our children are actually just references to the ones in the physical root...
|
||||
/// </summary>
|
||||
/// <value>The linked children.</value>
|
||||
public override List<LinkedChild> LinkedChildren
|
||||
{
|
||||
get { return _linkedChildren ?? (_linkedChildren = GetLinkedChildrenInternal()); }
|
||||
get { return GetLinkedChildrenInternal(); }
|
||||
set
|
||||
{
|
||||
base.LinkedChildren = value;
|
||||
@@ -175,7 +174,6 @@ namespace MediaBrowser.Controller.Entities
|
||||
public void ResetDynamicChildren()
|
||||
{
|
||||
_actualChildren = null;
|
||||
_linkedChildren = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,6 +29,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
public string FormatName { get; set; }
|
||||
public long? Size { get; set; }
|
||||
public string Container { get; set; }
|
||||
public int? TotalBitrate { get; set; }
|
||||
|
||||
public Video()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user