diff --git a/packages/misskey-forwarder/src/main.cpp b/packages/misskey-forwarder/src/main.cpp index 00b0c32a..b83cc5b3 100644 --- a/packages/misskey-forwarder/src/main.cpp +++ b/packages/misskey-forwarder/src/main.cpp @@ -45,7 +45,7 @@ int main() if (content.type != "note" || content.body.note.visibility != "public") return; std::string text = content.body.note.text; if (content.body.note.renote) - text += "\nšŸ” Renote: https://{}/notes/{}"_f(content.server, content.body.note.renote->id); + text += "\nšŸ” Renote: {}/notes/{}"_f(content.server, content.body.note.renote->id); TgBot::Bot bot(config.TelegramBotToken); bot.getApi().sendMessage(config.TelegramChatId, text);