diff --git a/www/common/outer/async-store.js b/www/common/outer/async-store.js index ac02e3ce3..bcf3685ec 100644 --- a/www/common/outer/async-store.js +++ b/www/common/outer/async-store.js @@ -123,6 +123,13 @@ define([ list = list.concat(fList); } + if (store.proxy.mailboxes) { + var mList = Object.keys(store.proxy.mailboxes).map(function (m) { + return store.proxy.mailboxes[m].channel; + }); + list = list.concat(mList); + } + list.push(userChannel); list.sort();