Merge pull request #27 from TiagoDanin/Sending-img
Minor improvements when sending image
This commit is contained in:
commit
f21116dfcf
@ -24,8 +24,9 @@ local action = function(msg)
|
|||||||
end
|
end
|
||||||
|
|
||||||
str = str:match('<img src="(.*)">')
|
str = str:match('<img src="(.*)">')
|
||||||
|
local output = '[]('..str..')'
|
||||||
|
|
||||||
sendMessage(msg.chat.id, str)
|
sendMessage(msg.chat.id, output, false, nil, true)
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -59,11 +59,13 @@ local action = function(msg)
|
|||||||
|
|
||||||
local i = math.random(jdat.queries.request[1].count)
|
local i = math.random(jdat.queries.request[1].count)
|
||||||
local result = jdat.items[i].link
|
local result = jdat.items[i].link
|
||||||
|
local output = '[]('..result..')'
|
||||||
|
|
||||||
|
|
||||||
if string.match(msg.text, '^/i[mage]*nsfw') then
|
if string.match(msg.text, '^/i[mage]*nsfw') then
|
||||||
sendReply(msg, result)
|
sendReply(msg, result)
|
||||||
else
|
else
|
||||||
sendMessage(msg.chat.id, result, false, msg.message_id)
|
sendMessage(msg.chat.id, output, false, nil, true)
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user