Skip to content

Commit 3c1ee59

Browse files
authored
Fix: Add Correct EU Endpoint (#11)
* fix eu endpoint * update analytics swift * remove deployment team
1 parent 62da5ed commit 3c1ee59

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

Example/BasicExample/BasicExample.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,7 @@
442442
CODE_SIGN_STYLE = Automatic;
443443
CURRENT_PROJECT_VERSION = 1;
444444
DEVELOPMENT_ASSET_PATHS = "\"BasicExample/Preview Content\"";
445+
DEVELOPMENT_TEAM = "";
445446
ENABLE_PREVIEWS = YES;
446447
GENERATE_INFOPLIST_FILE = YES;
447448
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
@@ -470,6 +471,7 @@
470471
CODE_SIGN_STYLE = Automatic;
471472
CURRENT_PROJECT_VERSION = 1;
472473
DEVELOPMENT_ASSET_PATHS = "\"BasicExample/Preview Content\"";
474+
DEVELOPMENT_TEAM = "";
473475
ENABLE_PREVIEWS = YES;
474476
GENERATE_INFOPLIST_FILE = YES;
475477
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;

Example/BasicExample/BasicExample.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 11 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Sources/SegmentMixpanel/MixpanelDestination.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public class MixpanelDestination: DestinationPlugin, RemoteNotifications {
7979
// Change the endpoint if euro one is set
8080
if let euEndpointEnabled = mixpanelSettings?.enableEuropeanUnionEndpoint,
8181
euEndpointEnabled {
82-
mixpanel?.serverURL = "api-eu.mixpanel.com"
82+
mixpanel?.serverURL = "https://api-eu.mixpanel.com"
8383
}
8484
}
8585

0 commit comments

Comments
 (0)