add missing file

pull/702/head
Luke Pulverenti 8 years ago
parent 7177512a45
commit c52de51c3c

@ -390,13 +390,13 @@ namespace MediaBrowser.Common.Implementations.ScheduledTasks
try try
{ {
var localTask = ScheduledTask.Execute(CurrentCancellationTokenSource.Token, progress);
if (options != null && options.MaxRuntimeMs.HasValue) if (options != null && options.MaxRuntimeMs.HasValue)
{ {
CurrentCancellationTokenSource.CancelAfter(options.MaxRuntimeMs.Value); CurrentCancellationTokenSource.CancelAfter(options.MaxRuntimeMs.Value);
} }
var localTask = ScheduledTask.Execute(CurrentCancellationTokenSource.Token, progress);
await localTask.ConfigureAwait(false); await localTask.ConfigureAwait(false);
status = TaskCompletionStatus.Completed; status = TaskCompletionStatus.Completed;

Loading…
Cancel
Save