Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix not showing display names in already synced rooms #171

Merged
merged 2 commits into from
Dec 19, 2023

Commits on Nov 25, 2023

  1. fix not showing displaynames of already synced rooms

    Fixes ulyssa#149
    
    The display_names were only populated from the
    OriginalSyncRoomMemberEvent. When opening an already synced room,
    display_names is not populated.
    
    The ChatStore's `need_load` is changed to a hashmap with OwnedRoomIds as
    keys and a bitmask of "needs" as value. The "need" thus can be `MESSAGES`
    or `MEMBERS`. The task that loads messages now also loads members, if
    that flag is set for the room, which is done when opening a window.
    
    Thanks to <benjamin@computer.surgery> for finding the source of the bug
    in that issue.
    benjajaja committed Nov 25, 2023
    Configuration menu
    Copy the full SHA
    e71e02e View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2023

  1. Configuration menu
    Copy the full SHA
    af87f2f View commit details
    Browse the repository at this point in the history