forked from MarseyWorld/MarseyWorld
fix edge case with pinning child comments
parent
40cb5b4139
commit
8ed450e980
|
@ -224,7 +224,8 @@ def post_id(pid, anything=None, v=None, sub=None):
|
||||||
pinned.remove(pin)
|
pinned.remove(pin)
|
||||||
elif pin.level > 1:
|
elif pin.level > 1:
|
||||||
pinned.remove(pin)
|
pinned.remove(pin)
|
||||||
pinned.append(pin.top_comment)
|
if pin.top_comment not in pinned:
|
||||||
|
pinned.append(pin.top_comment)
|
||||||
if pin.top_comment in comments:
|
if pin.top_comment in comments:
|
||||||
comments.remove(pin.top_comment)
|
comments.remove(pin.top_comment)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue