1
0
mirror of https://github.com/Luzifer/browserphone.git synced 2024-09-18 22:52:57 +00:00

Call is not ringing but pending

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2019-07-13 16:04:24 +02:00
parent 2b76995274
commit 401a1311ba
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E

View File

@ -68,8 +68,8 @@ export default {
return this.phone.conn && this.phone.conn.status() === 'open'
},
ringing() {
return this.phone.conn && this.phone.conn.status() === 'ringing'
pendingCall() {
return this.phone.conn && this.phone.conn.status() === 'pending'
},
},
@ -175,7 +175,7 @@ export default {
},
toggleCall() {
if (this.ringing) {
if (this.pendingCall) {
this.phone.conn.accept()
return
}