aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library/ExclusiveLiveStream.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2021-09-20 22:38:44 +0200
committerGitHub <noreply@github.com>2021-09-20 22:38:44 +0200
commit32ea4806f8e9c5f45876ff249223cf159764f02c (patch)
treef51328d41dc66a3118d7c4f4f28f0f893d01e9e8 /Emby.Server.Implementations/Library/ExclusiveLiveStream.cs
parent1b0e6b871b65a20a550dde388873a8bf44eb8096 (diff)
parentae0055c49483568aa244b4e7fe2f80e24ae2e53a (diff)
Merge pull request #6538 from cvium/livetv_oh_no
Diffstat (limited to 'Emby.Server.Implementations/Library/ExclusiveLiveStream.cs')
-rw-r--r--Emby.Server.Implementations/Library/ExclusiveLiveStream.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Library/ExclusiveLiveStream.cs b/Emby.Server.Implementations/Library/ExclusiveLiveStream.cs
index 6c65b5899..868071a99 100644
--- a/Emby.Server.Implementations/Library/ExclusiveLiveStream.cs
+++ b/Emby.Server.Implementations/Library/ExclusiveLiveStream.cs
@@ -4,6 +4,7 @@
using System;
using System.Globalization;
+using System.IO;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller.Library;
@@ -41,6 +42,11 @@ namespace Emby.Server.Implementations.Library
return _closeFn();
}
+ public Stream GetStream()
+ {
+ throw new NotSupportedException();
+ }
+
public Task Open(CancellationToken openCancellationToken)
{
return Task.CompletedTask;