From c33b21ee02838bd8ad588ca91321a7c9992c86eb Mon Sep 17 00:00:00 2001
From: Manav Gabhawala <manav1907@gmail.com>
Date: Wed, 18 Sep 2024 19:40:55 -0700
Subject: [PATCH] No longer prompt user for local network access on app launch
 on macOS Sequoia

---
 Segment/Internal/SEGUtils.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Segment/Internal/SEGUtils.m b/Segment/Internal/SEGUtils.m
index 8781a1f8..3e516825 100644
--- a/Segment/Internal/SEGUtils.m
+++ b/Segment/Internal/SEGUtils.m
@@ -309,7 +309,7 @@ BOOL getAdTrackingEnabled(SEGAnalyticsConfiguration *configuration)
         dict[@"type"] = @"macos";
         dict[@"model"] = getDeviceModel();
         dict[@"id"] = getMacUUID();
-        dict[@"name"] = [deviceInfo hostName];
+        dict[@"name"] = @"unknown";
         
         if (getAdTrackingEnabled(configuration)) {
             NSString *idfa = configuration.adSupportBlock();