This commit is contained in:
Ario
2019-09-17 12:49:27 +02:00
parent d89cc480d7
commit 046d4e7b39

View File

@@ -311,10 +311,10 @@ class Block
* */ * */
$continue = false; $continue = false;
try { try {
$res = $db->run( $res = $db->single(
"SHOW TABLES LIKE 'networkstats'" "SHOW TABLES LIKE 'networkstats'"
); );
if ($res) $continue = true; if ($res !== false) $continue = true;
} catch (Exception $e) { } catch (Exception $e) {
$continue = false; $continue = false;