1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-17 17:42:41 +03:00

Don't re-sort rooms on no-op RoomUpdateCause.PossibleTagChange (#7053)

* Don't re-sort rooms on no-op RoomUpdateCause.PossibleTagChange

* Update src/stores/room-list/algorithms/Algorithm.ts

Co-authored-by: Travis Ralston <travpc@gmail.com>

Co-authored-by: Travis Ralston <travpc@gmail.com>
Co-authored-by: Travis Ralston <travisr@matrix.org>
This commit is contained in:
Brad Murray
2021-11-02 16:44:54 -04:00
committed by GitHub
parent c9619bfe48
commit 74376f989e

View File

@@ -722,7 +722,8 @@ export class Algorithm extends EventEmitter {
cause = RoomUpdateCause.Timeline;
didTagChange = true;
} else {
cause = RoomUpdateCause.Timeline;
// This is a tag change update and no tags were changed, nothing to do!
return false;
}
if (didTagChange && isSticky) {