site banner

Bugs, Suggestions, Small Comments, And Site News

Have you found a problem in the site? Do you want to make a suggestion on improvement? Do you just want to say "hi everyone"? Post it here!

If you'd like to help with development, check out the Github and the dev Discord. We have a practically infinite list of small things that need to be fixed or changed.

24
Jump in the discussion.

No email address required.

Collapsed comment threads don't stay collapsed when leaving and re-entering a thread?

Yeah, there's no database storage for that. I've got a feature request for that but seriously no promises this is happening soon.

Might be easier to just store it in the browser's localStorage, though that has the issue of not being shared across multiple clients.

Might be, but it's still a significant amount of coding work. If we're doing that we may as well put it in the DB.

It's more performant to get the clients to store that information, and handle filtering posts, rather than your servers storing that N*M mapping and doing various joins. I don't care about sharing across devices, but I do care about it staying collapsed on one device! (and of course your server costs. If you implement it server-side, then it can only slow down your comment-loading queries even more).