Skip to content

Commit

Permalink
Fix: Add Correct EU Endpoint (#11)
Browse files Browse the repository at this point in the history
* fix eu endpoint

* update analytics swift

* remove deployment team
  • Loading branch information
alanjcharles authored Jan 23, 2024
1 parent 62da5ed commit 3c1ee59
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Example/BasicExample/BasicExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "\"BasicExample/Preview Content\"";
DEVELOPMENT_TEAM = "";
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
Expand Down Expand Up @@ -470,6 +471,7 @@
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "\"BasicExample/Preview Content\"";
DEVELOPMENT_TEAM = "";
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,17 @@
"repositoryURL": "https://github.com/segmentio/analytics-swift",
"state": {
"branch": null,
"revision": "efc111b5fccaebd1063ef0db6d206c252da387ec",
"version": "1.4.8"
"revision": "51f56b972de8daee251f18fd2c91fa3a33c8d77e",
"version": "1.5.2"
}
},
{
"package": "JSONSafeEncoder",
"repositoryURL": "https://github.com/segmentio/jsonsafeencoder-swift.git",
"state": {
"branch": null,
"revision": "8b70dc8c01b7b041912e30e29d2b488a43f782ac",
"version": "1.0.1"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Sources/SegmentMixpanel/MixpanelDestination.swift
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class MixpanelDestination: DestinationPlugin, RemoteNotifications {
// Change the endpoint if euro one is set
if let euEndpointEnabled = mixpanelSettings?.enableEuropeanUnionEndpoint,
euEndpointEnabled {
mixpanel?.serverURL = "api-eu.mixpanel.com"
mixpanel?.serverURL = "https://api-eu.mixpanel.com"
}
}

Expand Down

0 comments on commit 3c1ee59

Please sign in to comment.