Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sliding-sync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const BUFFER_PERIOD_MS = 10 * 1000;
export interface MSC3575RoomSubscription {
required_state?: string[][];
timeline_limit?: number;
include_old_rooms?: MSC3575RoomSubscription;
}

/**
Expand All @@ -42,7 +43,6 @@ export interface MSC3575Filter {
is_dm?: boolean;
is_encrypted?: boolean;
is_invite?: boolean;
is_tombstoned?: boolean;
room_name_like?: string;
room_types?: string[];
not_room_types?: string[];
Expand Down