diff --git a/updates.php b/updates.php index 044a548..4aa6c54 100644 --- a/updates.php +++ b/updates.php @@ -52,7 +52,15 @@ while($running) $type = "privato"; } - @include("_comandi.php"); + try { + require "_comandi.php"; + } catch(Exception $e) { + if (isset($chatID)) { + try { + sm($chatID,''.$e.''); + } catch(Exception $e) { } + } + } }