aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.php3
-rw-r--r--model/Room.php3
2 files changed, 6 insertions, 0 deletions
diff --git a/config.php b/config.php
index 6e397f9..af427d7 100644
--- a/config.php
+++ b/config.php
@@ -212,6 +212,9 @@ $GLOBALS['CONFIG']['ROOMS'] = array(
*
* Wenn diese Zeile auskommentiert oder auf false gesetzt ist ẃird kein Musik-Stream
* angeboten. Für diesen Raum wird dann keim Musik-Tab angeboten.
+ *
+ * Ist kein einziger Stream angebote, wird statt der Stream-Seite ein 404-Fehler
+ * angezeigt.
*/
'MUSIC' => false,
diff --git a/model/Room.php b/model/Room.php
index 3235016..47f5b26 100644
--- a/model/Room.php
+++ b/model/Room.php
@@ -251,6 +251,9 @@ class Room extends ModelBase
{
$selections = $this->getSelectionNames();
+ if(count($selections) == 0)
+ throw new NotFoundException('No Streams activated');
+
// default page
if(!$selection)
$selection = $selections[0];