5
Check out our Hexbear comrades' trans communities
(lemmygrad.ml)
There can be no trans liberation without the abolition of capitalism!
We have a Trans room in the GenZedong Matrix space! See the instructions in /c/genzedong to join.
Join our Akkoma instance at spectreofcommunism.boo!
UwU
Do you know is it the Trans Flag/ none country flags causing the issue, or all flags?
It's any unicode character that uses the zero-width joiner or other code points that are considered "invisible". I opened an issue here: https://github.com/LemmyNet/lemmy/issues/3888.
Oh fucking lord. I made the mistake of attempting to look into the characters, so I could make a PR. It's unicode, it's fucking unicode, of course it's a nightmare.
Yeah lol. It's not a very difficult fix really. Rather than checking if the string contains any invisible characters, it should check if it only contains invisible characters. The way they're doing it now unintentionally breaks a lot of stuff (breaking stuff unintentionally is a pretty common thing with unicode lol).
It's honestly easier to just check if it starts with those.
It is, yeah, which is why I suggested that in the issue :)