Skip to content

Commit

Permalink
default sdk config to no
Browse files Browse the repository at this point in the history
  • Loading branch information
KennyHuRadar committed Dec 20, 2024
1 parent cf3c531 commit 74f6b3a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions RadarSDK/RadarSdkConfiguration.m
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ - (instancetype)initWithDict:(NSDictionary *)dict {
}

NSObject *useNotificationDiffObj = dict[@"useNotificationDiff"];
// TODO: make this default NO
_useNotificationDiff = YES;
_useNotificationDiff = NO;
if (useNotificationDiffObj && [useNotificationDiffObj isKindOfClass:[NSNumber class]]) {
_useNotificationDiff = [(NSNumber *)useNotificationDiffObj boolValue];
}
Expand Down

0 comments on commit 74f6b3a

Please sign in to comment.