Adjust link formatting.

This commit is contained in:
dotnet 2023-10-13 14:06:09 -04:00
parent d004a957f9
commit a352b99719
1 changed files with 1 additions and 1 deletions

View File

@ -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)