Merge pull request #6203 from matrix-org/jryans/nested-reply-perf

Stop requesting null next replies from the server
This commit is contained in:
J. Ryan Stinnett
2021-06-16 20:17:53 +01:00
committed by GitHub

View File

@@ -297,6 +297,7 @@ export default class ReplyThread extends React.Component {
}
async getEvent(eventId) {
if (!eventId) return null;
const event = this.room.findEventById(eventId);
if (event) return event;