mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
commit
ea2ec2c854
@ -290,6 +290,12 @@ namespace MediaBrowser.Model.Dto
|
|||||||
/// <value><c>null</c> if [is place holder] contains no value, <c>true</c> if [is place holder]; otherwise, <c>false</c>.</value>
|
/// <value><c>null</c> if [is place holder] contains no value, <c>true</c> if [is place holder]; otherwise, <c>false</c>.</value>
|
||||||
public bool? IsPlaceHolder { get; set; }
|
public bool? IsPlaceHolder { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the number.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>The number.</value>
|
||||||
|
public string Number { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the index number.
|
/// Gets or sets the index number.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -314,6 +314,10 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
|
|||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.ErrorException("Error deleting recording file {0}", ex, remove.Path);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
_recordingProvider.Delete(remove);
|
_recordingProvider.Delete(remove);
|
||||||
}
|
}
|
||||||
|
@ -1845,6 +1845,10 @@ namespace MediaBrowser.Server.Implementations.LiveTv
|
|||||||
var dto = tuple.Item1;
|
var dto = tuple.Item1;
|
||||||
var channel = tuple.Item2;
|
var channel = tuple.Item2;
|
||||||
|
|
||||||
|
dto.Number = channel.Number;
|
||||||
|
dto.ChannelType = channel.ChannelType;
|
||||||
|
dto.ServiceName = GetService(channel).Name;
|
||||||
|
|
||||||
dto.MediaSources = channel.GetMediaSources(true).ToList();
|
dto.MediaSources = channel.GetMediaSources(true).ToList();
|
||||||
|
|
||||||
var channelIdString = channel.Id.ToString("N");
|
var channelIdString = channel.Id.ToString("N");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user