aboutsummaryrefslogtreecommitdiff
path: root/model
diff options
context:
space:
mode:
authorMaZderMind2018-04-01 15:16:02 +0200
committerMaZderMind2018-04-01 15:16:02 +0200
commit7735231c75b495946a4bced3054cbf9c62e3e25c (patch)
tree9c69577707602979af674f9d934031c8626a7578 /model
parentdbc56667916e10ea90a54aa1e2331ac4ebb282e6 (diff)
show dash/hls stream as 'Adaptive', fixes #66
Diffstat (limited to 'model')
-rw-r--r--model/Stream.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/model/Stream.php b/model/Stream.php
index 1c63227..ef9e8d7 100644
--- a/model/Stream.php
+++ b/model/Stream.php
@@ -100,6 +100,10 @@ class Stream
$display .= 'Radio';
break;
+ case 'dash':
+ $display .= 'Adaptive';
+ break;
+
default:
$display .= ucfirst($this->getSelection());
break;