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