We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af9ab71 commit 0c7d24fCopy full SHA for 0c7d24f
packages/firebase_remote_config/firebase_remote_config/ios/Classes/FLTFirebaseRemoteConfigPlugin.m
@@ -57,6 +57,8 @@ - (void)handleMethodCall:(FlutterMethodCall *)call result:(FlutterResult)flutter
57
NSError *_Nullable error) {
58
if (code == nil) {
59
details = [FLTFirebaseRemoteConfigUtils ErrorCodeAndMessageFromNSError:error];
60
+ code = [details valueForKey:@"code"];
61
+ message = [details valueForKey:@"message"];
62
}
63
if ([@"unknown" isEqualToString:code]) {
64
NSLog(@"FLTFirebaseRemoteConfig: An error occurred while calling method %@", call.method);
0 commit comments