mirror of
https://github.com/yagop/node-telegram-bot-api
synced 2025-08-28 21:07:39 +00:00
URL-decoded filename when sending file from stream
This sends the file as "My File.ext" instead of "My%20File.ext".
This commit is contained in:
parent
8a09f77327
commit
39c0ce66b9
@ -277,7 +277,7 @@ TelegramBot.prototype._formatSendData = function (type, data) {
|
|||||||
formData[type] = {
|
formData[type] = {
|
||||||
value: data,
|
value: data,
|
||||||
options: {
|
options: {
|
||||||
filename: fileName,
|
filename: decodeURIComponent(fileName),
|
||||||
contentType: mime.lookup(fileName)
|
contentType: mime.lookup(fileName)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user