updated nuget

This commit is contained in:
Luke Pulverenti
2015-03-23 20:22:00 -04:00
parent 1fba8d077b
commit f66eac7ec5
6 changed files with 13 additions and 7 deletions

View File

@@ -151,6 +151,9 @@ namespace MediaBrowser.Model.Dlna
list.Add(item.VideoProfile ?? string.Empty);
list.Add(item.Cabac.HasValue ? item.Cabac.Value.ToString() : string.Empty);
string streamId = item.PlaybackInfo == null ? null : item.PlaybackInfo.StreamId;
list.Add(streamId ?? string.Empty);
return string.Format("Params={0}", string.Join(";", list.ToArray()));
}