Merge branch 'bwindels/calls' into thirdroom/dev

This commit is contained in:
Ajay Bura 2022-11-11 10:24:18 +05:30
commit fadbc8c4eb

View File

@ -43,9 +43,9 @@ export class RoomStateStore {
getAllForType(roomId: string, type: string): Promise<RoomStateEntry[]> {
const range = this._roomStateStore.IDBKeyRange.bound(
encodeKey(roomId, type, MIN_UNICODE),
encodeKey(roomId, type, ""),
encodeKey(roomId, type, MAX_UNICODE),
true,
false,
true
);
return this._roomStateStore.selectAll(range);