Use ignoreSelfEvent in the RoomListStore (which doesn't work!)

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-08-12 09:40:26 +02:00
parent f2dccbc9f7
commit 0a4a1506d4
No known key found for this signature in database
GPG Key ID: 55C211A1226CB17D
2 changed files with 5 additions and 4 deletions

View File

@ -38,6 +38,7 @@ import { SpaceWatcher } from "./SpaceWatcher";
import SpaceStore from "../SpaceStore";
import { Action } from "../../dispatcher/actions";
import { SettingUpdatedPayload } from "../../dispatcher/payloads/SettingUpdatedPayload";
import { ignoreSelfEvent } from "./algorithms/tag-sorting/RecentAlgorithm";
interface IState {
tagsEnabled?: boolean;
@ -270,6 +271,9 @@ export class RoomListStoreClass extends AsyncStoreWithClient<IState> {
// Ignore non-live events (backfill)
if (!eventPayload.isLiveEvent || !payload.isLiveUnfilteredRoomTimelineEvent) return;
// Avoid re-ordering on status, profile etc. changes
if (ignoreSelfEvent(eventPayload.event)) return;
const roomId = eventPayload.event.getRoomId();
const room = this.matrixClient.getRoom(roomId);
const tryUpdate = async (updatedRoom: Room) => {

View File

@ -87,10 +87,7 @@ export const sortRooms = (rooms: Room[]): Room[] => {
const ev = r.timeline[i];
if (!ev.getTs()) continue; // skip events that don't have timestamps (tests only?)
if (
(ev.getSender() === myUserId && !ignoreSelfEvent(ev)) ||
Unread.eventTriggersUnreadCount(ev)
) {
if (ev.getSender() === myUserId || Unread.eventTriggersUnreadCount(ev)) {
return ev.getTs();
}
}