Add the mailboxes channels to the pin list

pull/1/head
yflory 6 years ago
parent 991c56fec3
commit 38f8535dd5

@ -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();

Loading…
Cancel
Save