Skip to content

Commit

Permalink
fix(server): fix bind of method
Browse files Browse the repository at this point in the history
Fix #9006
  • Loading branch information
syuilo authored Jul 16, 2022
1 parent ab3bc4a commit c1c8c9c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/backend/src/server/api/stream/channels/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export default class extends Channel {
constructor(id: string, connection: Channel['connection']) {
super(id, connection);
this.onNote = this.onNote.bind(this);
this.emitTypers = this.emitTypers.bind(this);
}

public async init(params: any) {
Expand Down

0 comments on commit c1c8c9c

Please sign in to comment.