我在我的Raspberry Pi上运行了一个小电报机器人
telegram-cli -W -s recieve.lua
这是我的lua文件的片段:
function on_msg_receive (msg)
if msg.text == nil then
return
end
if string.sub(msg.text, 0, 1) ~= "/" then
return
end
mark_read(msg.from.print_name)
end
但是这些消息没有被标记为已读,也许命令不对吗?
答案 0 :(得分:-1)
将此行添加到您的机器人
mark_read(receiver, ok_cb, true)
当你想要禁用它时,只需对其进行评论:)