Message is sending but the bot is not editing the message, what's wrong here ?
here's my code :-
if($text == "/hi"){
bot('sendChatAction',[
'chat_id'=>$chat_id,
'action'=>"typing",
]);
bot('sendMessage',[
'chat_id'=>$chat_id,
'text'=>"wait",
'reply_to_message_id'=>$message->message_id,
]);
bot('editMessageText',[
'chat_id'=>$chat_id,
'text'=>"hello",
'reply_to_message_id'=>$message->message_id,
]);
}
any help would be appreciated :)