aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2021-03-22 23:11:25 +0100
committercvium <clausvium@gmail.com>2021-03-22 23:11:25 +0100
commit1f07586d1cd03b42d35d95cc3c7eec04bf40e597 (patch)
tree49626594d79749e9d0d635809f050cf6c7c1338e /MediaBrowser.Model
parent5e0f480e48c3803e69ee5e145477fb9067b43e58 (diff)
forgot streaminfo
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/Dlna/StreamInfo.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Dlna/StreamInfo.cs b/MediaBrowser.Model/Dlna/StreamInfo.cs
index dbd6789df..81d534d85 100644
--- a/MediaBrowser.Model/Dlna/StreamInfo.cs
+++ b/MediaBrowser.Model/Dlna/StreamInfo.cs
@@ -188,7 +188,7 @@ namespace MediaBrowser.Model.Dlna
// Be careful, IsDirectStream==true by default (Static != false or not in query).
// See initialization of StreamingRequestDto in AudioController.GetAudioStream() method : Static = @static ?? false.
if (string.Equals(pair.Name, "Static", StringComparison.OrdinalIgnoreCase) &&
- string.Equals(pair.Value, "true", StringComparison.OrdinalIgnoreCase))
+ string.Equals(pair.Value, "false", StringComparison.OrdinalIgnoreCase))
{
continue;
}