diff options
Diffstat (limited to '')
-rw-r--r-- | model/Stream.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/model/Stream.php b/model/Stream.php index 22b73b6..628dd57 100644 --- a/model/Stream.php +++ b/model/Stream.php @@ -138,7 +138,7 @@ class Stream return proto().'://'.joinpath([$GLOBALS['CONFIG']['CDN'], rawurlencode($this->getRoom()->getStream()).'_'.rawurlencode($this->getLanguage()).'_'.rawurlencode($selection).'.webm']); case 'hls': - return proto().'://'.joinpath([$GLOBALS['CONFIG']['CDN'], rawurlencode($this->getRoom()->getStream()).'_'.rawurlencode($this->getLanguage()).'_'.rawurlencode($selection).'.m3u8']); + return proto().'://'.joinpath([$GLOBALS['CONFIG']['CDN'], 'hls', rawurlencode($this->getRoom()->getStream()).'_'.rawurlencode($this->getLanguage()).'_'.rawurlencode($selection).'.m3u8']); } return null; |