Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
Fix: Ending dictation crashes RTE (#924)
Browse files Browse the repository at this point in the history
  • Loading branch information
Velin92 authored Jan 17, 2024
1 parent 3c3aaa3 commit 1a566e6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ public class WysiwygTextView: UITextView {
}

override public func dictationRecordingDidEnd() {
super.dictationRecordingDidEnd()
// Do not call super, this is an optional objc protocol
isDictationRunning = false
}

override public func dictationRecognitionFailed() {
super.dictationRecognitionFailed()
// Do not call super this is an optional objc protocol
isDictationRunning = false
}

Expand Down

0 comments on commit 1a566e6

Please sign in to comment.