// It's not only data from the db which is stored on the MessageController entries, we could fetch this again. What we cannot fetch from the db and which is stored here is all listeners a particular messages is linked to for instance. We will be able to get rid of this once we don't use backbone models at all
// It's not only data from the db which is stored on the MessageController entries, we could fetch this again. What we cannot fetch from the db and which is stored here is all listeners a particular messages is linked to for instance. We will be able to get rid of this once we don't use backbone models at all
exportclassConversationController{
exportclassConversationController{
@ -169,7 +170,7 @@ export class ConversationController {
}
}
publicasyncgetOrCreateAndWait(
publicasyncgetOrCreateAndWait(
id: any,
id: string |PubKey,
type:'private'|'group'
type:'private'|'group'
):Promise<ConversationModel>{
):Promise<ConversationModel>{
constinitialPromise=
constinitialPromise=
@ -182,7 +183,7 @@ export class ConversationController {
newError('getOrCreateAndWait: invalid id passed.')
newError('getOrCreateAndWait: invalid id passed.')