add reply-to input support to shout.lua

This commit is contained in:
topkecleon 2016-06-01 21:01:45 -04:00
parent b7d2fe7f82
commit 4848c9875b

View File

@ -5,7 +5,7 @@ local utilities = require('utilities')
shout.command = 'shout <text>'
shout.doc = [[```
/shout <text>
Shouts something.
Shouts something. Input may be the replied-to message.
```]]
function shout:init()
@ -15,11 +15,14 @@ end
function shout:action(msg)
local input = utilities.input(msg.text)
if not input then
if msg.reply_to_message and #msg.reply_to_message.text > 0 then
input = msg.reply_to_message.text
else
utilities.send_message(self, msg.chat.id, shout.doc, true, msg.message_id, true)
return
end
end
input = utilities.trim(input)
if input:len() > 20 then