pluginsInitialized
is too early
we don't yet have a connection then, so listen to `connectionInitialized` instead.
This commit is contained in:
parent
a52e24adc8
commit
c18eaa3351
@ -1127,13 +1127,16 @@
|
||||
}
|
||||
|
||||
/************************ BEGIN Event Handlers ************************/
|
||||
_converse.api.listen.on('pluginsInitialized', () => {
|
||||
_converse.avatars = new _converse.Avatars();
|
||||
_converse.avatars.browserStorage = new Backbone.BrowserStorage.local(
|
||||
b64_sha1(`converse.avatars-${_converse.bare_jid}`)
|
||||
);
|
||||
_converse.avatars.fetch({'silent': true});
|
||||
});
|
||||
_converse.initAvatars = function () {
|
||||
if (_.isUndefined(_converse.avatars)) {
|
||||
_converse.avatars = new _converse.Avatars();
|
||||
_converse.avatars.browserStorage = new Backbone.BrowserStorage.local(
|
||||
b64_sha1(`converse.avatars-${_converse.bare_jid}`)
|
||||
);
|
||||
_converse.avatars.fetch();
|
||||
}
|
||||
}
|
||||
_converse.api.listen.on('connectionInitialized', () => _converse.initAvatars);
|
||||
|
||||
_converse.on('addClientFeatures', () => {
|
||||
if (_converse.allow_muc) {
|
||||
|
Loading…
Reference in New Issue
Block a user