Upstream-Sync

This commit is contained in:
Andreas Bielawski 2016-08-24 22:34:42 +02:00
commit 0a6cc47379
2 changed files with 3 additions and 3 deletions

View File

@ -41,9 +41,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

View File

@ -198,7 +198,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',