mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 01:54:42 +01:00
update recording dialogs
This commit is contained in:
@@ -541,6 +541,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
|
||||
instance.RecordAnyChannel = info.RecordAnyChannel;
|
||||
instance.RecordAnyTime = info.RecordAnyTime;
|
||||
instance.RecordNewOnly = info.RecordNewOnly;
|
||||
instance.SkipEpisodesInLibrary = info.SkipEpisodesInLibrary;
|
||||
instance.KeepUpTo = info.KeepUpTo;
|
||||
instance.StartDate = info.StartDate;
|
||||
|
||||
_seriesTimerProvider.Update(instance);
|
||||
@@ -1381,7 +1383,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
|
||||
|
||||
allPrograms = GetProgramsForSeries(seriesTimer, allPrograms);
|
||||
|
||||
if (filterByCurrentRecordings)
|
||||
if (filterByCurrentRecordings && seriesTimer.SkipEpisodesInLibrary)
|
||||
{
|
||||
allPrograms = allPrograms.Where(i => !IsProgramAlreadyInLibrary(i));
|
||||
}
|
||||
|
||||
@@ -100,6 +100,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv
|
||||
Priority = info.Priority,
|
||||
RecordAnyChannel = info.RecordAnyChannel,
|
||||
RecordAnyTime = info.RecordAnyTime,
|
||||
SkipEpisodesInLibrary = info.SkipEpisodesInLibrary,
|
||||
KeepUpTo = info.KeepUpTo,
|
||||
RecordNewOnly = info.RecordNewOnly,
|
||||
ExternalChannelId = info.ChannelId,
|
||||
ExternalProgramId = info.ProgramId,
|
||||
@@ -308,6 +310,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv
|
||||
Priority = dto.Priority,
|
||||
RecordAnyChannel = dto.RecordAnyChannel,
|
||||
RecordAnyTime = dto.RecordAnyTime,
|
||||
SkipEpisodesInLibrary = dto.SkipEpisodesInLibrary,
|
||||
KeepUpTo = dto.KeepUpTo,
|
||||
RecordNewOnly = dto.RecordNewOnly,
|
||||
ProgramId = dto.ExternalProgramId,
|
||||
ChannelId = dto.ExternalChannelId,
|
||||
|
||||
Reference in New Issue
Block a user