From cc2108cc3315fb2f322a92cbffb592fdc8b421b5 Mon Sep 17 00:00:00 2001 From: Angel Fernando Quiroz Campos Date: Mon, 19 Aug 2019 16:45:34 -0500 Subject: [PATCH] BBB: Check if host setting is set #2974 --- plugin/bbb/lib/bbb.lib.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugin/bbb/lib/bbb.lib.php b/plugin/bbb/lib/bbb.lib.php index 780e3bbd67..cd8d3458d2 100755 --- a/plugin/bbb/lib/bbb.lib.php +++ b/plugin/bbb/lib/bbb.lib.php @@ -1270,6 +1270,12 @@ class bbb */ public function isServerRunning() { + $host = $this->plugin->get('host'); + + if (empty($host)) { + return false; + } + return true; //return BigBlueButtonBN::isServerRunning($this->protocol.$this->url); }