Skip to content

Commit

Permalink
fixup! feat(SIP): send signaling control messages
Browse files Browse the repository at this point in the history
  • Loading branch information
DorraJaouad committed Oct 27, 2023
1 parent 211596e commit 2072401
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ export default {
},
phoneCallStatus(value) {
if (!value && !(value === 'ringing' || value === 'accepted')) {
if (!value || !(value === 'ringing' || value === 'accepted')) {
this.disabled = false
}
}
Expand Down Expand Up @@ -993,7 +993,6 @@ export default {
try {
this.disabled = true
await callSIPHangupPhone(this.sessionIds[0])
this.$store.dispatch('deletePhoneState', { callid: this.participant.callId })
} catch (error) {
showError(t('spreed', 'Phone number could not be hanged up'))
this.disabled = false
Expand Down

0 comments on commit 2072401

Please sign in to comment.