Skip to content

Commit dbdc3d1

Browse files
committedFeb 10, 2025·
check opt out inside tracking queue
1 parent a81bf89 commit dbdc3d1

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed
 

‎Sources/MixpanelInstance.swift

+4-5
Original file line numberDiff line numberDiff line change
@@ -1068,14 +1068,13 @@ extension MixpanelInstance {
10681068
- parameter properties: properties dictionary
10691069
*/
10701070
public func track(event: String?, properties: Properties? = nil) {
1071-
if hasOptedOutTracking() {
1072-
return
1073-
}
1074-
10751071
let epochInterval = Date().timeIntervalSince1970
10761072

10771073
trackingQueue.async { [weak self, event, properties, epochInterval] in
1078-
guard let self = self else {
1074+
guard let self else {
1075+
return
1076+
}
1077+
if self.hasOptedOutTracking() {
10791078
return
10801079
}
10811080
var shadowTimedEvents = InternalProperties()

0 commit comments

Comments
 (0)
Please sign in to comment.