@ -205,6 +205,11 @@
isPublic ( ) {
return ! ! ( this . id && this . id . match ( /^publicChat:/ ) ) ;
} ,
isClosedGroup ( ) {
return (
this . get ( 'type' ) === Message . GROUP && ! this . isPublic ( ) && ! this . isRss ( )
) ;
} ,
isClosable ( ) {
return ! this . isRss ( ) || this . get ( 'closable' ) ;
} ,
@ -881,6 +886,9 @@
throw new Error ( 'Invalid friend request state' ) ;
}
} ,
isOurConversation ( ) {
return this . id === this . ourNumber ;
} ,
isSecondaryDevice ( ) {
return ! ! this . get ( 'secondaryStatus' ) ;
} ,
@ -2712,13 +2720,16 @@
} ,
deleteContact ( ) {
const title = this . isPublic ( )
? i18n ( 'deletePublicChannel' )
: i18n ( 'deleteContact' ) ;
let title = i18n ( 'deleteContact' ) ;
let message = i18n ( 'deleteContactConfirmation' ) ;
const message = this . isPublic ( )
? i18n ( 'deletePublicChannelConfirmation' )
: i18n ( 'deleteContactConfirmation' ) ;
if ( this . isPublic ( ) ) {
title = i18n ( 'deletePublicChannel' ) ;
message = i18n ( 'deletePublicChannelConfirmation' ) ;
} else if ( this . isClosedGroup ( ) ) {
title = i18n ( 'leaveClosedGroup' ) ;
message = i18n ( 'leaveClosedGroupConfirmation' ) ;
}
window . confirmationDialog ( {
title ,