1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-28 15:22:05 +03:00

Make threads events indexed by the index manager (#7442)

This commit is contained in:
Germain
2021-12-23 10:12:27 +00:00
committed by GitHub
parent defbe16448
commit fdc6082c83
2 changed files with 2 additions and 18 deletions

View File

@ -17,7 +17,6 @@ limitations under the License.
import { EventStatus, MatrixEvent } from 'matrix-js-sdk/src/models/event';
import { EventType, MsgType, RelationType } from "matrix-js-sdk/src/@types/event";
import { MatrixClient } from 'matrix-js-sdk/src/client';
import { Thread } from 'matrix-js-sdk/src/models/thread';
import { logger } from 'matrix-js-sdk/src/logger';
import { POLL_START_EVENT_TYPE } from "matrix-js-sdk/src/@types/polls";
@ -194,13 +193,7 @@ export async function fetchInitialEvent(
const rootEventData = await client.fetchRoomEvent(roomId, initialEvent.threadRootId);
const rootEvent = new MatrixEvent(rootEventData);
const room = client.getRoom(roomId);
const thread = new Thread(
[rootEvent],
room,
client,
);
thread.addEvent(initialEvent);
room.threads.set(thread.id, thread);
room.createThread([rootEvent]);
} catch (e) {
logger.warn("Could not find root event: " + initialEvent.threadRootId);
}