This commit is contained in:
Patrick 2018-02-27 22:57:48 +01:00
parent cae951d1a6
commit 50d25d9a02

View File

@ -52,7 +52,15 @@ while($running)
$type = "privato";
}
@include("_comandi.php");
try {
require "_comandi.php";
} catch(Exception $e) {
if (isset($chatID)) {
try {
sm($chatID,'<code>'.$e.'</code>');
} catch(Exception $e) { }
}
}
}