Skip to content

Commit

Permalink
6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
unity-thull committed Nov 23, 2021
1 parent 0c11a75 commit 60a1768
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Assets/DeltaDNA/Runtime/Helpers/Network.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ internal static IEnumerator SendRequest(HttpRequest request, Action<int /*status
}
if (DDNA.Instance.consentTracker.PiplExportConsentGiven)
{
www.SetRequestHeader("PIPL_EXPORT", "");
www.SetRequestHeader("PIPL_EXPORT", "true");
}
if (DDNA.Instance.consentTracker.PiplUseConsentGiven)
{
www.SetRequestHeader("PIPL_CONSENT", "");
www.SetRequestHeader("PIPL_CONSENT", "true");
}
byte[] bytes = Encoding.UTF8.GetBytes(request.HTTPBody);
www.uploadHandler = new UploadHandlerRaw(bytes);
Expand Down
2 changes: 1 addition & 1 deletion Assets/DeltaDNA/Runtime/Helpers/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace DeltaDNA
{
public class Settings
{
public static readonly string SDK_VERSION = "Unity SDK v6.0.0";
public static readonly string SDK_VERSION = "Unity SDK v6.0.1";

internal static readonly string ENGAGE_API_VERSION = "4";

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [6.0.1]

### Fixed
- Fixed a bug where in certain cases devices wouldn't send events from locations requiring PIPL consent, even if consent was provided.

## [6.0.0]

### New
Expand Down

0 comments on commit 60a1768

Please sign in to comment.