set timeout
fix: flood after reboot
This commit is contained in:
parent
9ca2683657
commit
8eb00284f0
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
$BOT = new Base;
|
||||
$GET = json_decode(file_get_contents("php://input"),true);
|
||||
$debug = file_get_contents("php://input");
|
||||
|
||||
//is group?
|
||||
if ($GET['message']['chat']['id'] > 0) {
|
||||
@ -9,9 +8,15 @@ if ($GET['message']['chat']['id'] > 0) {
|
||||
}else{
|
||||
$isgroup = true;
|
||||
}
|
||||
|
||||
//reply to...
|
||||
$msgid = $GET['message']['message_id'];
|
||||
$from = $GET['message']['chat']['id'];
|
||||
$text = $GET['message']['text'];
|
||||
$date = $GET['message']['date'];
|
||||
if ((time() - $date) > 120) {
|
||||
$text = 'unset';
|
||||
}else {
|
||||
$text = $GET['message']['text'];
|
||||
}
|
||||
|
||||
define('MSGID',$msgid);
|
Loading…
Reference in New Issue
Block a user