diff options
Diffstat (limited to 'model')
-rw-r--r-- | model/Room.php | 3 |
1 files changed, 3 insertions, 0 deletions
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]; |