BBB: Check if host setting is set #2974

pull/2981/head
Angel Fernando Quiroz Campos 6 years ago
parent a5cab353c0
commit cc2108cc33
  1. 6
      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);
}

Loading…
Cancel
Save