mirror of
https://github.com/cryptpad/cryptpad.git
synced 2026-09-14 11:05:41 +05:00
Fix type error in messenger
This commit is contained in:
parent
9f597dac1f
commit
851f6db7fb
@ -891,10 +891,10 @@ define([
|
||||
onDirectMessage(ctx, msg, sender);
|
||||
});
|
||||
ctx.store.network.on('disconnect', function () {
|
||||
ctx.emit('DISCONNECT', null, getAllClients());
|
||||
ctx.emit('DISCONNECT', null, getAllClients(ctx));
|
||||
});
|
||||
ctx.store.network.on('reconnect', function () {
|
||||
ctx.emit('RECONNECT', null, getAllClients());
|
||||
ctx.emit('RECONNECT', null, getAllClients(ctx));
|
||||
});
|
||||
|
||||
messenger.onFriendUpdate = function (curve) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user