Ensure source formatting consistency.

This commit is contained in:
dotnet 2023-10-13 14:19:53 -04:00
parent b2c85201cf
commit 63baf977be
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,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 = {"fileIds": [file_id], "text": "%s\nURL: %s\n" % (msg, image_src), "i": self.misskey_token})
create_note_request = requests.post(self.misskey_url + "notes/create", json = {"fileIds": [file_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)