aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2021-03-22 20:53:55 +0100
committercvium <clausvium@gmail.com>2021-03-22 23:05:05 +0100
commit210d10400a99cdb84ba70c9ba7dd958645ce5029 (patch)
tree9f6538834b13ccfc1c18e40253fc7e35e864382c /MediaBrowser.Model
parent3dda25412c2090b6060e1467ce61681d950ee70f (diff)
change HLS endpoint defaults to false
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 55b12ae81..dbd6789df 100644
--- a/MediaBrowser.Model/Dlna/StreamInfo.cs
+++ b/MediaBrowser.Model/Dlna/StreamInfo.cs
@@ -186,7 +186,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 ?? true.
+ // 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))
{