Skip to content

Commit

Permalink
fix(remote-config): call resolved too early (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
robingenz authored Apr 19, 2023
1 parent 7638650 commit 357623b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/famous-weeks-cover.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@capacitor-firebase/remote-config": patch
---

fix(ios): call resolved too early
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ public class FirebaseRemoteConfigPlugin: CAPPlugin {
}
call.resolve()
})
call.resolve()
}

@objc func fetchAndActivate(_ call: CAPPluginCall) {
Expand All @@ -35,7 +34,6 @@ public class FirebaseRemoteConfigPlugin: CAPPlugin {
}
call.resolve()
})
call.resolve()
}

@objc func fetchConfig(_ call: CAPPluginCall) {
Expand All @@ -47,7 +45,6 @@ public class FirebaseRemoteConfigPlugin: CAPPlugin {
}
call.resolve()
})
call.resolve()
}

@objc func getBoolean(_ call: CAPPluginCall) {
Expand Down

0 comments on commit 357623b

Please sign in to comment.