Skip to content

Commit

Permalink
fix(ios): proper isListening return (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Jun 28, 2024
1 parent 33d0c3a commit daf40a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/Plugin/Plugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public class SpeechRecognition: CAPPlugin {
@objc func isListening(_ call: CAPPluginCall) {
let isListening = self.audioEngine?.isRunning ?? false
call.resolve([
"isListening": isListening
"listening": isListening
])
}

Expand Down

0 comments on commit daf40a7

Please sign in to comment.