Skip to content

Commit 04e7fa3

Browse files
robbie-anamclaude
andauthored
fix: ably connections do not echo (#140)
Co-authored-by: Claude <[email protected]>
1 parent 40fda2a commit 04e7fa3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/modules/SignallingClient.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ export class SignallingClient {
6161
return;
6262
}
6363

64+
// Initialize Ably Realtime client with echo disabled
65+
this.realtime = new Ably.Realtime({
66+
token: this.ablyToken,
67+
echoMessages: false,
68+
});
6469
// Initialize Ably Realtime client
6570
this.realtime = new Ably.Realtime(this.ablyToken);
6671

0 commit comments

Comments
 (0)