Skip to content

Commit

Permalink
Session id decimal issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Parvesh Chauhan committed Nov 9, 2022
1 parent 2f620cf commit 98b555c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VWO/VWOURL.m
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ - (NSURL *)forMakingUserPartOfCampaign:(VWOCampaign *)campaign
@"u" : VWOUserDefaults.UUID,
@"s" : [NSString stringWithFormat:@"%lu", (unsigned long)VWOUserDefaults.sessionCount],
@"random" : [self randomNumber],
@"sId" : [NSString stringWithFormat:@"%f", date.timeIntervalSince1970],
@"sId" : [NSString stringWithFormat:@"%lu", (unsigned long)date.timeIntervalSince1970],
@"ed" : [self extraParametersWithDate:date].toString
} mutableCopy];
if (config.customDimension != nil) {
Expand Down

0 comments on commit 98b555c

Please sign in to comment.