Move initialisation of public and rss conversations to fix early loading error. Rename function to be more readable

pull/458/head
Beaudan Brown 6 years ago
parent 6387c9352a
commit 8066affd2c

@ -206,31 +206,9 @@
const initAPIs = async () => {
const ourKey = textsecure.storage.user.getNumber();
const rssFeedConversations = await window.Signal.Data.getAllRssFeedConversations(
{
ConversationCollection: Whisper.ConversationCollection,
}
);
window.feeds = [];
rssFeedConversations.forEach(conversation => {
window.feeds.push(new window.LokiRssAPI(conversation.getRssSettings()));
});
window.lokiMessageAPI = new window.LokiMessageAPI(ourKey);
window.lokiPublicChatAPI = new window.LokiPublicChatAPI(ourKey);
const publicConversations = await window.Signal.Data.getAllPublicConversations(
{
ConversationCollection: Whisper.ConversationCollection,
}
);
publicConversations.forEach(conversation => {
const settings = conversation.getPublicSource();
const channel = window.lokiPublicChatAPI.findOrCreateChannel(
settings.server,
settings.channelId,
conversation.id
);
channel.refreshModStatus();
});
window.lokiP2pAPI = new window.LokiP2pAPI(ourKey);
window.lokiP2pAPI.on('pingContact', pubKey => {
const isPing = true;

@ -247,6 +247,17 @@
conversation.resetPendingSend(),
conversation.setFriendRequestExpiryTimeout(),
]);
if (conversation.isPublic()) {
const settings = conversation.getPublicSource();
const channel = window.lokiPublicChatAPI.findOrCreateChannel(
settings.server,
settings.channelId,
conversation.id
);
promises.push(channel.refreshModStatus());
} else if (conversation.isRss()) {
window.feeds.push(new window.LokiRssAPI(conversation.getRssSettings()));
}
});
await Promise.all(promises);

@ -2079,7 +2079,7 @@
);
return channelAPI;
},
getModStatus() {
isModerator() {
if (!this.isPublic()) {
return false;
}

@ -674,7 +674,7 @@
isRss: !!this.get('isRss'),
isDeletable:
!this.get('isPublic') ||
this.getConversation().getModStatus() ||
this.getConversation().isModerator() ||
this.getSource() === this.OUR_NUMBER,
onCopyText: () => this.copyText(),

Loading…
Cancel
Save