From 9bb357de3886f1f45ccb6e2dcded9492d208969a Mon Sep 17 00:00:00 2001 From: Chipmunk <65827213+ChipmunkMC@users.noreply.github.com> Date: Mon, 10 Jul 2023 10:05:44 -0400 Subject: [PATCH] Do not add device identifiers to rovio redirect URLs --- Assets/Scripts/Assembly-CSharp/URLManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Assembly-CSharp/URLManager.cs b/Assets/Scripts/Assembly-CSharp/URLManager.cs index e7fa8a6a..bedb6a93 100644 --- a/Assets/Scripts/Assembly-CSharp/URLManager.cs +++ b/Assets/Scripts/Assembly-CSharp/URLManager.cs @@ -51,7 +51,7 @@ public class URLManager : Singleton this.m_baseURLString = this.m_baseURLString + "&v=" + Singleton.Instance.ApplicationVersion; this.m_baseURLString += "&r=game"; this.m_baseURLString = this.m_baseURLString + "&c=" + Singleton.Instance.CustomerID; - this.m_baseURLString = this.m_baseURLString + "&i=" + SystemInfo.deviceUniqueIdentifier; + // this.m_baseURLString = this.m_baseURLString + "&i=" + SystemInfo.deviceUniqueIdentifier; } public string MakeProductTarget(string target)