Kein Text für send_voice und send_audio
This commit is contained in:
parent
6a5b079876
commit
d5ece27770
@ -40,9 +40,9 @@ function media:action(msg, config, matches)
|
||||
if ext == 'gif' then
|
||||
result = utilities.send_document(receiver, file, nil, msg.message_id)
|
||||
elseif ext == 'ogg' then
|
||||
result = utilities.send_voice(receiver, file, nil, msg.message_id)
|
||||
result = utilities.send_voice(receiver, file, msg.message_id)
|
||||
elseif mime_type == 'audio' then
|
||||
result = utilities.send_audio(receiver, file, nil, msg.message_id)
|
||||
result = utilities.send_audio(receiver, file, msg.message_id)
|
||||
elseif mime_type == 'video' then
|
||||
result = utilities.send_video(receiver, file, nil, msg.message_id)
|
||||
else
|
||||
|
@ -197,7 +197,7 @@ end
|
||||
|
||||
-- NOTE: Voice messages are .ogg files encoded with OPUS
|
||||
-- https://core.telegram.org/bots/api#sendvoice
|
||||
function utilities.send_voice(chat_id, file, text, reply_to_message_id, duration)
|
||||
function utilities.send_voice(chat_id, file, reply_to_message_id, duration)
|
||||
if not file then return false end
|
||||
local output = bindings.request(
|
||||
'sendVoice',
|
||||
|
Reference in New Issue
Block a user