-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On by default session tracking #286
Changes from all commits
831f63d
dceac81
b6d16bf
48e267f
b3d5420
abb08c2
4b7277d
f3922c6
26a2c37
57722ed
0645bad
8980ea3
0677b66
fda541e
e12ff70
d813cef
c89979d
ec307f1
e84d311
0ff92ec
57044de
348e095
3bf9f72
8a65049
f4bffac
19d23a4
70c6e76
00bb48b
8bd994f
d05198d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ @implementation BugsnagUser | |
- (instancetype)initWithDictionary:(NSDictionary *)dict { | ||
if (self = [super init]) { | ||
_userId = dict[@"id"]; | ||
_emailAddress = dict[@"emailAddress"]; | ||
_emailAddress = dict[@"email"]; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. are the changes in this file related to this PR? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This addresses an issue in the session request serialisation which was found when adding mazerunner scenarios. Currently the session request sends I can split this off into a separate PR if you think it makes more sense. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. that makes sense, I think it would be good to have it in a separate PR to track it more easily |
||
_name = dict[@"name"]; | ||
} | ||
return self; | ||
|
@@ -34,12 +34,12 @@ + (instancetype)userWithUserId:(NSString *)userId name:(NSString *)name emailAdd | |
return [[self alloc] initWithUserId:userId name:name emailAddress:emailAddress]; | ||
} | ||
|
||
|
||
- (NSDictionary *)toJson { | ||
NSMutableDictionary *dict = [NSMutableDictionary new]; | ||
BSGDictInsertIfNotNil(dict, self.userId, @"id"); | ||
BSGDictInsertIfNotNil(dict, self.emailAddress, @"emailAddress"); | ||
BSGDictInsertIfNotNil(dict, self.emailAddress, @"email"); | ||
BSGDictInsertIfNotNil(dict, self.name, @"name"); | ||
return [NSDictionary dictionaryWithDictionary:dict]; | ||
} | ||
|
||
@end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
PODS: | ||
- Bugsnag (5.15.4) | ||
- Bugsnag (5.15.6) | ||
|
||
DEPENDENCIES: | ||
- Bugsnag (from `../..`) | ||
|
||
EXTERNAL SOURCES: | ||
Bugsnag: | ||
:path: ../.. | ||
:path: "../.." | ||
|
||
SPEC CHECKSUMS: | ||
Bugsnag: 904211a0230f254808b47f3adb4b684900772962 | ||
Bugsnag: ff5f5e3059e6a9c9d27a899f3bf3774067553483 | ||
|
||
PODFILE CHECKSUM: 2107babfbfdb18f0288407b9d9ebd48cbee8661c | ||
|
||
COCOAPODS: 1.4.0 | ||
COCOAPODS: 1.5.0 |
This comment was marked as resolved.
Sorry, something went wrong.
This comment was marked as resolved.
Sorry, something went wrong.