@ -161,15 +161,18 @@
if ( ! conversation ) {
if ( ! conversation ) {
return ;
return ;
}
}
if ( conversation . isPublic ( ) ) {
// Close group leaving
if ( conversation . isClosedGroup ( ) ) {
await conversation . leaveGroup ( ) ;
} else if ( conversation . isPublic ( ) ) {
const channelAPI = await conversation . getPublicSendData ( ) ;
const channelAPI = await conversation . getPublicSendData ( ) ;
if ( channelAPI === null ) {
if ( channelAPI === null ) {
log . warn ( ` Could not get API for public conversation ${ id } ` ) ;
log . warn ( ` Could not get API for public conversation ${ id } ` ) ;
} else {
} else {
channelAPI . serverAPI . partChannel ( channelAPI . channelId ) ;
channelAPI . serverAPI . partChannel ( channelAPI . channelId ) ;
}
}
}
} else if ( conversation . isPrivate ( ) ) {
await conversation . destroyMessages ( ) ;
const deviceIds = await textsecure . storage . protocol . getDeviceIds ( id ) ;
const deviceIds = await textsecure . storage . protocol . getDeviceIds ( id ) ;
await Promise . all (
await Promise . all (
deviceIds . map ( deviceId => {
deviceIds . map ( deviceId => {
@ -181,6 +184,9 @@
return sessionCipher . deleteAllSessionsForDevice ( ) ;
return sessionCipher . deleteAllSessionsForDevice ( ) ;
} )
} )
) ;
) ;
}
await conversation . destroyMessages ( ) ;
await window . Signal . Data . removeConversation ( id , {
await window . Signal . Data . removeConversation ( id , {
Conversation : Whisper . Conversation ,
Conversation : Whisper . Conversation ,
} ) ;
} ) ;