mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 09:14:45 +03:00
fix mapping multiple tuner channels to same epg channel
This commit is contained in:
@@ -379,7 +379,7 @@ namespace Emby.Common.Implementations.ScheduledTasks
|
||||
/// <exception cref="System.InvalidOperationException">Cannot execute a Task that is already running</exception>
|
||||
public async Task Execute(TaskExecutionOptions options)
|
||||
{
|
||||
var task = ExecuteInternal(options);
|
||||
var task = Task.Run(async () => await ExecuteInternal(options).ConfigureAwait(false));
|
||||
|
||||
_currentTask = task;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user