This commit is contained in:
Ario
2019-09-17 12:40:51 +02:00
parent a9f62b8d6d
commit 468ec7fb1d

View File

@@ -309,10 +309,14 @@ class Block
*
*
* */
$res = $db->run(
"SHOW TABLES LIKE 'networkstats'"
);
try {
$res = $db->run(
"SHOW TABLES LIKE 'networkstats'"
);
} catch (Exception $e) {
$res = false;
}
_log($res,3);
if($res !== FALSE) {