We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68f41f2 commit 4820ae9Copy full SHA for 4820ae9
src/transmit.ts
@@ -195,7 +195,8 @@ export class Transmit {
195
payload: { uid },
196
})
197
198
- return this.#storage.addChannelToStream(uid, channel)
+ this.#storage.addChannelToStream(uid, channel)
199
+ return true
200
}
201
202
$unsubscribeFromChannel(uid: string, channel: string, ctx: HttpContext): boolean {
@@ -207,7 +208,8 @@ export class Transmit {
207
208
209
210
- return this.#storage.removeChannelFromStream(uid, channel)
211
+ this.#storage.removeChannelFromStream(uid, channel)
212
213
214
215
#ping() {
0 commit comments