mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-05-07 14:44:01 +00:00
Fix uninitialized encryption backend on chat room creation without encryptionFix unin
This commit is contained in:
parent
a0bab8083d
commit
eab5d76787
4 changed files with 4 additions and 8 deletions
|
|
@ -183,7 +183,7 @@ public:
|
|||
bool isEphemeralEnabled() const;
|
||||
long getEphemeralLifetime() const;
|
||||
bool canBeEphemeral();
|
||||
Q_INVOKABLE bool haveEncryption() const;
|
||||
bool haveEncryption() const;
|
||||
Q_INVOKABLE bool isSecure() const;
|
||||
int getSecurityLevel() const;
|
||||
bool isGroupEnabled() const;
|
||||
|
|
|
|||
|
|
@ -95,7 +95,7 @@ void TimelineModel::setSelected(const bool& selected){
|
|||
<< ", isConference:"<< mChatRoomModel->isConference()
|
||||
<< ", isOneToOne:"<< mChatRoomModel->isOneToOne()
|
||||
<< ", Encrypted:"<< mChatRoomModel->haveEncryption()
|
||||
<< ", ephemeralEnabled:" << mChatRoomModel->haveEncryption()
|
||||
<< ", ephemeralEnabled:" << mChatRoomModel->isEphemeralEnabled()
|
||||
<< ", isAdmin:"<< mChatRoomModel->isMeAdmin()
|
||||
<< ", canHandleParticipants:"<< mChatRoomModel->canHandleParticipants()
|
||||
<< ", hasBeenLeft:" << mChatRoomModel->hasBeenLeft();
|
||||
|
|
|
|||
|
|
@ -78,11 +78,7 @@ Notification {
|
|||
AccountSettingsModel.setDefaultProxyConfigFromSipAddress(notification.localAddress)
|
||||
notification.timelineModel.selected = true
|
||||
notification.notificationData.window.setView('Conversation', {
|
||||
chatRoomModel:notification.timelineModel.getChatRoomModel()/*,
|
||||
peerAddress: notification.peerAddress,
|
||||
localAddress: notification.localAddress,
|
||||
fullPeerAddress: notification.fullPeerAddress,
|
||||
fullLocalAddress: notification.fullLocalAddress*/
|
||||
chatRoomModel:notification.timelineModel.getChatRoomModel()
|
||||
})
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 235a49a0e6a17055cf9cf756b80452d88ee45f83
|
||||
Subproject commit 90d0649aa68f0730817eaef9930522700ceb0253
|
||||
Loading…
Add table
Reference in a new issue