discuitnet / discuit

A free and open-source community discussion platform.
https://discuit.net
GNU Affero General Public License v3.0
384 stars 40 forks source link

Fix: multple comments on same post in feed breaking post title #93

Closed Codycody31 closed 1 month ago

Codycody31 commented 1 month ago

postToComment was having the post.ID overwritten by the next comment if it was for the same post, resulting in the comment missing the post title.

Fully closes: #91

previnder commented 1 month ago

Good catch, it's a tricky one.

Codycody31 commented 1 month ago

removed postComments fully, not sure why I even kept it in the first place. And switched to use if _, ok := postTitles[post.ID]; ok {