We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7506af4 commit 64ecfb5Copy full SHA for 64ecfb5
Adjust/ADJActivityHandler.m
@@ -882,6 +882,7 @@ - (void)eventI:(ADJActivityHandler *)selfI
882
if (![selfI isEnabledI:selfI]) return;
883
if (![selfI checkEventI:selfI event:event]) return;
884
if (![selfI checkTransactionIdI:selfI transactionId:event.transactionId]) return;
885
+ if (selfI.activityState.isGdprForgotten) { return; }
886
887
double now = [NSDate.date timeIntervalSince1970];
888
@@ -1320,6 +1321,9 @@ - (void)setDeviceTokenI:(ADJActivityHandler *)selfI
1320
1321
if (!selfI.activityState) {
1322
return;
1323
}
1324
+ if (selfI.activityState.isGdprForgotten) {
1325
+ return;
1326
+ }
1327
1328
NSString *deviceTokenString = [ADJUtil convertDeviceToken:deviceToken];
1329
0 commit comments