Skip to content

Commit

Permalink
Remove traces of listeningUsers
Browse files Browse the repository at this point in the history
  • Loading branch information
backspace committed Feb 10, 2025
1 parent e3c7f43 commit 27dc76e
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/runtime-common/realm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ export interface RealmAdapter {
sendServerEvent(
event: ServerEvents,
matrixClient: MatrixClient,
usernames: string[],
): Promise<void>;
}

Expand Down Expand Up @@ -2046,11 +2045,7 @@ export class Realm {
}

private async sendServerEvent(event: ServerEvents): Promise<void> {
this.#adapter.sendServerEvent(
event,
this.#matrixClient,
this.listeningUsers,
);
this.#adapter.sendServerEvent(event, this.#matrixClient);
}

private async createRequestContext(): Promise<RequestContext> {
Expand Down

0 comments on commit 27dc76e

Please sign in to comment.