@ -435,15 +441,17 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
if(foundCommunity){
if(foundCommunity.priority){
toRet.priority=foundCommunity.priority;
}
// TODO grab the details from the db if we do not have an entry in the wrapper
// TODO should we just not rely on the db values?
}// the priorty field is the only one currently in the wrapper community. and we already pre apply the one from the DB on the top of this function
}
if(foundVolatileInfo){
if(foundVolatileInfo.unread){
toRet.isMarkedUnread=foundVolatileInfo.unread;
}
}else{
if(this.get('markedAsUnread')){
toRet.isMarkedUnread=this.get('markedAsUnread');
}
}
// -- Handle the field stored only in memory for all types of conversation--
@ -2234,12 +2242,15 @@ export async function commitConversationAndRefreshWrapper(id: string) {
if(!convo){
return;
}
// write to DB
// TODOLATER remove duplicates between db and wrapper (except nickname&name as we need them for search, or move search to wrapper too)
// TODOLATER remove duplicates between db and wrapper (and move search by name or nickname to wrapper)
// TODOLATER insertConvoFromDBIntoWrapperAndRefresh and insertContactFromDBIntoWrapperAndRefresh both fetches the same data from the DB. Might be worth fetching it and providing it to both?
// Performance impact on this is probably to be pretty bad. We might want to push for that DB refactor to be done sooner so we do not need to fetch info from the DB anymore
// this filter is based on the `isContactToStoreInContactsWrapper` function.
// this filter is based on the `isContactToStoreInContactsWrapper` function. Note, blocked contacts won't be added to the wrapper at first, but will on the first start
constcontactsToWriteInWrapper=db
.prepare(
`SELECT * FROM ${CONVERSATIONS_TABLE} WHERE type = 'private' AND active_at > 0 AND NOT hidden AND (didApproveMe OR isApproved) AND id <> '$us' AND id NOT LIKE '15%' ;`