update live stream generation

This commit is contained in:
Luke Pulverenti
2015-03-29 14:16:40 -04:00
parent a79962b7eb
commit dd8dd1938a
14 changed files with 93 additions and 9 deletions

View File

@@ -210,6 +210,9 @@ namespace MediaBrowser.Model.Dlna
list.Add(new NameValuePair("StreamId", streamId ?? string.Empty));
list.Add(new NameValuePair("api_key", accessToken ?? string.Empty));
string liveStreamId = item.MediaSource == null ? null : item.MediaSource.LiveStreamId;
list.Add(new NameValuePair("LiveStreamId", liveStreamId ?? string.Empty));
return list;
}