Skip to content

Commit

Permalink
fix a bug where numbers are reported as pointer value. see mikelamber…
Browse files Browse the repository at this point in the history
  • Loading branch information
jondot committed Jul 10, 2016
1 parent 79ac803 commit ec1c2ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ios/SMXCrashlytics/SMXCrashlytics.m
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ - (dispatch_queue_t)methodQueue
for (NSDictionary *dict in frameArray) {
CLSStackFrame *frame = [CLSStackFrame stackFrame];
[frame setFileName: dict[@"fileName"]];
[frame setLineNumber: dict[@"lineNumber"]];
[frame setOffset: dict[@"columnNumber"]];
[frame setLineNumber: [dict[@"lineNumber"] intValue]];
[frame setOffset: [dict[@"columnNumber"] intValue]];
[frame setSymbol: dict[@"functionName"]];
[clsFrames addObject: frame];
}
Expand Down

0 comments on commit ec1c2ac

Please sign in to comment.