From aea4a28afc64bcadc4da05efb1e0e23f1bb7f42e Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Mon, 10 Jun 2019 22:06:28 +0200 Subject: [PATCH] Fix: Broken function call Signed-off-by: Knut Ahlers --- src/app.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.vue b/src/app.vue index 5207d77..b40f5b7 100644 --- a/src/app.vue +++ b/src/app.vue @@ -106,12 +106,12 @@ export default { this.phone.conn = conn this.ongoingCall = true this.ringing = false - this.announeState('Call connected') + this.announceStatus('Call connected') }) this.phone.device.on('disconnect', () => { this.phone.conn = null this.ongoingCall = false - this.announeState('Call disconnected') + this.announceStatus('Call disconnected') }) this.phone.device.on('incoming', conn => { this.announceStatus(`Incoming call from ${conn.parameters.From}`)