Fix weird crossposting bug

Cause: https://redd.it/ffhfm0
This commit is contained in:
blank X 2020-09-03 16:35:52 +07:00
parent 6eb2aec15a
commit 672732670d
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ async def main():
async def _actual_start_post(random_post, chats):
text = f'<a href="{random_post.shortlink}">{html.escape(random_post.title)}</a>'
cpid = getattr(random_post, 'crosspost_parent', None)
if cpid:
if cpid and getattr(random_post, 'crosspost_parent_list', None):
random_post = reddit.submission(cpid[3:])
text += f' (crosspost of <a href="{random_post.shortlink}">{html.escape(random_post.title)}</a>)'
if not random_post.is_self: