Skip to content

Commit

Permalink
wups forgot the quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomGuyJCI committed Oct 6, 2024
1 parent e74bb5c commit 282864f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orchard/scan/sources/discord.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ async def get_iids(self):
# note: the channel id is not required because channels are immutable by source id.
# note2: attachment id is required because it's possible to delete an attachment
# w/o deleting the post.
iid = f"{post['id']}|{post["attachments"][i]['id']}"
iid = f"{post['id']}|{post['attachments'][i]['id']}"
# cache of message objects for later use, if needed.
self.iid_cache[iid] = post
iids.append(iid)
Expand Down

0 comments on commit 282864f

Please sign in to comment.