aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-01-20 12:53:48 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-01-20 12:53:48 -0500
commit8d668095bb663c51083b97eb61b09811cb97575b (patch)
tree9af9be874268835f37a4a367eae7b31fe99ab95a /MediaBrowser.Controller
parentfe1630aec43fca7b1450659704269e0cc6f3cb40 (diff)
add IsRemote property
Diffstat (limited to 'MediaBrowser.Controller')
-rw-r--r--MediaBrowser.Controller/Channels/ChannelMediaInfo.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Channels/ChannelMediaInfo.cs b/MediaBrowser.Controller/Channels/ChannelMediaInfo.cs
index 6d2190680..eda6ee1af 100644
--- a/MediaBrowser.Controller/Channels/ChannelMediaInfo.cs
+++ b/MediaBrowser.Controller/Channels/ChannelMediaInfo.cs
@@ -68,7 +68,8 @@ namespace MediaBrowser.Controller.Channels
Id = id,
ReadAtNativeFramerate = ReadAtNativeFramerate,
SupportsDirectStream = false,
- SupportsDirectPlay = SupportsDirectPlay
+ SupportsDirectPlay = SupportsDirectPlay,
+ IsRemote = true
};
var bitrate = (AudioBitrate ?? 0) + (VideoBitrate ?? 0);