*rage*
This commit is contained in:
parent
8fa8b99b3e
commit
3007e6b80f
@ -9,7 +9,9 @@ post_photo.triggers = {
|
|||||||
|
|
||||||
function post_photo:pre_process(msg, config)
|
function post_photo:pre_process(msg, config)
|
||||||
if not msg.document then return msg end -- Ignore
|
if not msg.document then return msg end -- Ignore
|
||||||
if msg.caption:match("#ignore") then return msg end -- Ignore, when Caption contains "#ignore"
|
if msg.caption then
|
||||||
|
if msg.caption:match("#ignore") then return msg end -- Ignore, when Caption contains "#ignore"
|
||||||
|
end
|
||||||
local mime_type = msg.document.mime_type
|
local mime_type = msg.document.mime_type
|
||||||
local valid_mimetypes = {['image/jpeg'] = true, ['image/png'] = true, ['image/bmp'] = true}
|
local valid_mimetypes = {['image/jpeg'] = true, ['image/png'] = true, ['image/bmp'] = true}
|
||||||
if not valid_mimetypes[mime_type] then return msg end
|
if not valid_mimetypes[mime_type] then return msg end
|
||||||
|
Reference in New Issue
Block a user