Commit af69ff51 authored by Nicolas Follet's avatar Nicolas Follet

feat(Calls): avoid undefined on some properties when call is ended

parent b8dbdd98
......@@ -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')
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment