mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-12 04:25:05 -05:00
Enable auto-joining mucs
This commit is contained in:
parent
6472c1592b
commit
2bb319bcbb
@ -32,6 +32,9 @@ module.exports = BaseCollection.extend({
|
|||||||
var mucs = res.privateStorage.bookmarks.conferences;
|
var mucs = res.privateStorage.bookmarks.conferences;
|
||||||
mucs.forEach(function (muc) {
|
mucs.forEach(function (muc) {
|
||||||
self.add(muc);
|
self.add(muc);
|
||||||
|
if (muc.autoJoin) {
|
||||||
|
self.get(muc.jid).join();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
CACHE MANIFEST
|
CACHE MANIFEST
|
||||||
# 0.0.1 1387261368693
|
# 0.0.1 1387301758200
|
||||||
|
|
||||||
CACHE:
|
CACHE:
|
||||||
/app.js
|
/app.js
|
||||||
|
Loading…
Reference in New Issue
Block a user