Skip to content

Commit

Permalink
Missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
axel-op committed Apr 14, 2020
1 parent c2902c5 commit e551f90
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ - (void)handleMethodCall:(FlutterMethodCall *)call result:(FlutterResult)result
NSException *exception = [NSException
exceptionWithName:call.arguments[@"exception"]
reason:reason
userInfo:stack]
userInfo:stack];

[[FIRCrashlytics crashlytics] recordError:exception]
[[FIRCrashlytics crashlytics] recordError:exception];
result(@"Error reported to Crashlytics.");
} else if ([@"Crashlytics#setUserIdentifier" isEqualToString:call.method]) {
[[FIRCrashlytics crashlytics] setUserID:call.arguments[@"identifier"]];
Expand Down

0 comments on commit e551f90

Please sign in to comment.