From a352b99719b76a4da2aa748e83f385ce318337f4 Mon Sep 17 00:00:00 2001 From: dotnet Date: Fri, 13 Oct 2023 14:06:09 -0400 Subject: [PATCH] Adjust link formatting. --- gelbooru_poster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gelbooru_poster.py b/gelbooru_poster.py index 7ffca55..aa39802 100644 --- a/gelbooru_poster.py +++ b/gelbooru_poster.py @@ -161,7 +161,7 @@ class BotInstance: msg = self.bot_message if random.randint(0, 100) < 5: msg += " " + self.bot_hashtags - create_note_request = requests.post(self.misskey_url + "notes/create", json = {"renoteId": post_json['id'], "text": "%s\nURL: %s\n" % (msg, image_src), "i": self.misskey_token}) + create_note_request = requests.post(self.misskey_url + "notes/create", json = {"renoteId": post_json['id'], "text": "%s\n [Source](%s)\n" % (msg, image_src), "i": self.misskey_token}) # If error, print error and exit if create_note_request.status_code != 200: print("Error: " + create_note_request.json()["error"]["message"], file=log_file)