Skip to content

Commit

Permalink
fix: setDelay type
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Jul 10, 2022
1 parent f2ff526 commit 6b214d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/Plugin/CapacitorUpdaterPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public class CapacitorUpdaterPlugin: CAPPlugin {
}

@objc func setDelay(_ call: CAPPluginCall) {
guard let kind = call.getBool("kind") else {
guard let kind = call.getString("kind") else {
print("\(self.implementation.TAG) setDelay called without kind")
call.reject("setDelay called without kind")
return
Expand Down

0 comments on commit 6b214d7

Please sign in to comment.