Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions FirebaseInstallations/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
NOTE: Installation Identifiers created by previous versions will be reset on Mac OS which can affect e.g. A/B Testing variants or debug device targeting for Firebase Messaging.
iOS, TVOS and watchOS Installation Identifiers will not be affected. (#5603)
- [changed] More readable server error console messages. (#5654)
- [changed] Auth Token auto fetch disabled. (#5656)

# v1.2.0 -- M69

Expand Down
4 changes: 3 additions & 1 deletion FirebaseInstallations/Source/Library/FIRInstallations.m
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,12 @@ - (instancetype)initWitAppOptions:(FIROptions *)appOptions appName:(NSString *)a
projectID:appOptions.projectID
GCMSenderID:appOptions.GCMSenderID
accessGroup:appOptions.appGroupID];

// `prefetchAuthToken` is disabled due to b/156746574.
return [self initWithAppOptions:appOptions
appName:appName
installationsIDController:IDController
prefetchAuthToken:YES];
prefetchAuthToken:NO];
}

/// The initializer is supposed to be used by tests to inject `installationsStore`.
Expand Down