From bf922747d5847d3a4342927ed28edaa505c32c4f Mon Sep 17 00:00:00 2001 From: Haonan Chen Date: Fri, 26 Dec 2025 12:38:29 +0800 Subject: [PATCH] packages/misskey-forwarder: fix renote link --- packages/misskey-forwarder/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);