Merge branch 'develop' of github.com:matrix-org/matrix-react-sdk into t3chguy/spacesperf

 Conflicts:
	src/components/views/dialogs/InviteDialog.tsx
This commit is contained in:
Michael Telatynski
2021-07-15 10:19:04 +01:00
45 changed files with 902 additions and 276 deletions
+1 -1
View File
@@ -159,7 +159,7 @@ export class StopGapWidgetDriver extends WidgetDriver {
if (results.length >= limit) break;
const ev = events[i];
if (ev.getType() !== eventType) continue;
if (ev.getType() !== eventType || ev.isState()) continue;
if (eventType === EventType.RoomMessage && msgtype && msgtype !== ev.getContent()['msgtype']) continue;
results.push(ev);
}