aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2021-02-20 10:52:30 +0900
committerGitHub <noreply@github.com>2021-02-20 10:52:30 +0900
commit175e2a5249079e5fd40aefdd646b9ef9a0ced733 (patch)
tree212b7d4711b448cab691da4fad148ec3c3ce3fdf /Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs
parent5379fa0bd082bd8e1b15bbb1f6517cab932ee2bb (diff)
parente9f22303a4ff4ff2fb6e71f64b62f8b98b4d497b (diff)
Merge pull request #5242 from jellyfin/cancellationtokens
Properly forward cancellationTokens
Diffstat (limited to 'Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs')
-rw-r--r--Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs b/Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs
index f7507e6ba..eeb2426f4 100644
--- a/Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs
+++ b/Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs
@@ -159,7 +159,7 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
EnableStreamSharing = false;
await DeleteTempFiles(new List<string> { TempFilePath }).ConfigureAwait(false);
- });
+ }, CancellationToken.None);
}
private void Resolve(TaskCompletionSource<bool> openTaskCompletionSource)