Copy message text for feedback instead of forwarding
Telegram's pseudo-DRM prevents bots from forwarding messages in chats with "Restrict Saving Content"
This commit is contained in:
parent
e3a5f1a67b
commit
7cf9689420
|
@ -5,16 +5,18 @@ module.exports = (bot, feedback_id) => (ctx) => {
|
||||||
|
|
||||||
const from = ctx.message.from;
|
const from = ctx.message.from;
|
||||||
let contactable = "The developer might contact you regarding your feedback.";
|
let contactable = "The developer might contact you regarding your feedback.";
|
||||||
|
let message;
|
||||||
if (from.username) {
|
if (from.username) {
|
||||||
|
|
||||||
bot.telegram.sendMessage(feedback_id, `Feedback from: @${from.username}`);
|
message = `Feedback from: @${from.username}`;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
contactable = "The developer might not be able to contact you due to lack of your username.";
|
contactable = "The developer might not be able to contact you due to lack of your username.";
|
||||||
|
message = `Feedback from User ${from.id}`;
|
||||||
|
|
||||||
}
|
}
|
||||||
ctx.forwardMessage(feedback_id);
|
bot.telegram.sendMessage(feedback_id, `${message} ${ctx.message.text}`).catch(console.log);
|
||||||
return `Thanks for the feedback! ${contactable}`;
|
return `Thanks for the feedback! ${contactable}`;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue