Skip to content

Commit

Permalink
pass beacons param
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpatrick committed Jan 19, 2024
1 parent 0bcaa6e commit 1fd7395
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions RadarSDK/RadarVerificationManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,9 @@ - (void)startTrackingVerified:(BOOL)token interval:(NSTimeInterval)interval beac
[[RadarLogger sharedInstance] logWithLevel:RadarLogLevelDebug message:@"Network connected"];

if (token) {
[self trackVerifiedTokenWithCompletionHandler:nil];
[self trackVerifiedTokenWithBeacons:beacons completionHandler:nil];
} else {
[self trackVerifiedWithCompletionHandler:nil];
[self trackVerifiedWithBeacons:beacons completionHandler:nil];
}
} else {
[[RadarLogger sharedInstance] logWithLevel:RadarLogLevelDebug message:@"Network disconnected"];
Expand All @@ -274,9 +274,9 @@ - (void)startTrackingVerified:(BOOL)token interval:(NSTimeInterval)interval beac
[[RadarLogger sharedInstance] logWithLevel:RadarLogLevelDebug message:@"Timer fired"];

if (token) {
[self trackVerifiedTokenWithCompletionHandler:nil];
[self trackVerifiedTokenWithBeacons:beacons completionHandler:nil];
} else {
[self trackVerifiedWithCompletionHandler:nil];
[self trackVerifiedWithBeacons:beacons completionHandler:nil];
}
}];
}
Expand Down

0 comments on commit 1fd7395

Please sign in to comment.