fix link of bit

This commit is contained in:
FullGreaM 2025-10-27 17:41:08 +03:00
parent 74d0fc9ab1
commit e38c99709d

View File

@ -317,9 +317,7 @@ class TgBot {
const errHandler = (err) => {
console.error(err.stack);
sent.text(
"Error. Invalid/Hidden video or Forbidden for download\n" +
"But you can create your bot: " +
"https://git.fullgream.tech/fullgream/telegram_ytdlp_node.js/"
"Error. Invalid/Hidden video or Forbidden for download"
);
};
@ -442,7 +440,9 @@ class TgBot {
this.send(msg, "Invalid youtube link");
}
} else {
this.send(msg, "Permission denied");
this.send(msg, "Permission denied\n" +
"But you can create your bot: " +
"https://git.fullgream.tech/fullgream/telegram_ytdlp_node.js/");
}
}
}