Skip to content

Commit

Permalink
fix: missing return statements (#1127)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmo314 authored Dec 11, 2023
1 parent 656065d commit 7ea68a4
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions ios/Runner/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ import WebKit

switch call.method {
case "speak":
guard let text = args?["text"] as? String, !text.empty else {
if (text.empty) {
result(Bool(true))
}
result(FlutterError.init(code: "INVALID_ARGUMENT", message: "Text is null", details: nil))
guard let text = args?["text"] as? String else {
result(FlutterError.init(code: "INVALID_ARGUMENT", message: "Text is null", details: nil))
return
}
if (text.empty) {
result(Bool(true))
return
}

let utterance = AVSpeechUtterance(string: text)
Expand Down Expand Up @@ -110,4 +112,4 @@ import WebKit
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}
}

0 comments on commit 7ea68a4

Please sign in to comment.