You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I join a room, messages that begin with a URL appear last in the sent messages, out of order. I think I know why. Inline links trigger this predicate:
def needsThread(self):
return self._message.is_upload() or (self._message.body and self._isInlineLink(self._message.body))
It looks like these messages get rendered in a thread, which is probably why they don't end up in he right order.
When I join a room, messages that begin with a URL appear last in the sent messages, out of order. I think I know why. Inline links trigger this predicate:
It looks like these messages get rendered in a thread, which is probably why they don't end up in he right order.
Possibly #59 has the same cause.
The text was updated successfully, but these errors were encountered: