forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-08-07 17:52:02 +02:00
parent b7fccbf427
commit 8a6b09af80
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ def get_comments(cids, v=None, load_parent=False):
parents = [x.parent_comment_id for x in output if x.parent_comment_id]
parents = get_comments(parents, v=v)
parents = {x.id: x for x in parents}
for c in output: parents.get(c.parent_comment_id)
for c in output: c.sex = parents.get(c.parent_comment_id)
return sorted(output, key=lambda x: cids.index(x.id))