diff options
Diffstat (limited to 'MediaBrowser.Api/Playback/StreamState.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/StreamState.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Playback/StreamState.cs b/MediaBrowser.Api/Playback/StreamState.cs index cc733dfaf..f9e861e8d 100644 --- a/MediaBrowser.Api/Playback/StreamState.cs +++ b/MediaBrowser.Api/Playback/StreamState.cs @@ -28,6 +28,11 @@ namespace MediaBrowser.Api.Playback get { return Request as VideoStreamRequest; } } + public StreamState() + { + PlayableStreamFileNames = new List<string>(); + } + /// <summary> /// Gets or sets the log file stream. /// </summary> @@ -57,8 +62,6 @@ namespace MediaBrowser.Api.Playback public List<string> PlayableStreamFileNames { get; set; } - public bool HasMediaStreams { get; set; } - public string LiveTvStreamId { get; set; } public int SegmentLength = 10; |
