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 2ea5b3b commit a8d3bbbCopy full SHA for a8d3bbb
1 file changed
Sources/Sentry/SentryNetworkTracker.m
@@ -573,7 +573,9 @@ - (SentryLevel)getBreadcrumbLevel:(NSURLSessionTask *)sessionTask
573
}
574
575
#if SENTRY_TARGET_REPLAY_SUPPORTED
576
-// Store extracted network details data for session replay.
+// Associated object key for attaching SentryReplayNetworkDetails to each NSURLSessionTask.
577
+// Safe: setAssociatedObject follows existing patterns in urlSessionTask:setState:
578
+// and getAssociatedObject is called from blocks that hold a strong reference to the task.
579
static const void *SentryNetworkDetailsKey = &SentryNetworkDetailsKey;
580
581
- (BOOL)isNetworkDetailCaptureEnabledFor:(NSString *)urlString options:(SentryOptions *)options
0 commit comments