Skip to content

Commit 55778cd

Browse files
committed
Fix typo in functions_ios.mm selector for limited use tokens
1 parent 5f30cf3 commit 55778cd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

functions/src/ios/functions_ios.mm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
HttpsCallableReferenceInternal* FunctionsInternal::GetHttpsCallable(
4949
const char* name, const HttpsCallableOptions& options) const {
5050
FIRHTTPSCallableOptions *firOptions = [[FIRHTTPSCallableOptions alloc]
51-
initWithRequireLimitedUseAppCheckTokens:options.limited_use_app_check_token];
51+
initWithRequireLimitedUseAppCheckToken:options.limited_use_app_check_token];
5252

5353
// HttpsCallableReferenceInternal handles deleting the wrapper pointer.
5454
return new HttpsCallableReferenceInternal(
@@ -65,7 +65,7 @@
6565
HttpsCallableReferenceInternal* FunctionsInternal::GetHttpsCallableFromURL(
6666
const char* url, const HttpsCallableOptions& options) const {
6767
FIRHTTPSCallableOptions *firOptions = [[FIRHTTPSCallableOptions alloc]
68-
initWithRequireLimitedUseAppCheckTokens:options.limited_use_app_check_token];
68+
initWithRequireLimitedUseAppCheckToken:options.limited_use_app_check_token];
6969

7070
// HttpsCallableReferenceInternal handles deleting the wrapper pointer.
7171
NSURL *nsurl = [NSURL URLWithString:@(url)];

0 commit comments

Comments
 (0)