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 e9dca08 commit 422353bCopy full SHA for 422353b
packages/firebase_crashlytics/darwin/Classes/FirebaseCrashlyticsPlugin.m
@@ -88,9 +88,9 @@ - (void)handleMethodCall:(FlutterMethodCall *)call result:(FlutterResult)result
88
NSException *exception = [NSException
89
exceptionWithName:call.arguments[@"exception"]
90
reason:reason
91
- userInfo:stack]
+ userInfo:stack];
92
93
- [[FIRCrashlytics crashlytics] recordError:exception]
+ [[FIRCrashlytics crashlytics] recordError:exception];
94
result(@"Error reported to Crashlytics.");
95
} else if ([@"Crashlytics#setUserIdentifier" isEqualToString:call.method]) {
96
[[FIRCrashlytics crashlytics] setUserID:call.arguments[@"identifier"]];
0 commit comments