mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-18 11:58:11 +00:00
feat(Calls): avoid undefined on some properties when call is ended
This commit is contained in:
parent
b8dbdd9863
commit
af69ff5199
2 changed files with 2 additions and 1 deletions
|
|
@ -22,6 +22,7 @@ Window {
|
|||
callError: '',
|
||||
isOutgoing: true,
|
||||
recording: false,
|
||||
localSas: '',
|
||||
sipAddress: '',
|
||||
type: false,
|
||||
updating: true,
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ function handleVideoRequested () {
|
|||
}
|
||||
|
||||
function makeReadableSecuredString (securedString) {
|
||||
if (!securedString.length) {
|
||||
if (!securedString || !securedString.length) {
|
||||
return qsTr('callNotSecured')
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue