Skip to content

Commit

Permalink
Fix deep link url encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmfinol committed Dec 26, 2023
1 parent 6d371e1 commit 4c1b026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/Cgs/CardGameManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ private static string GetAutoUpdateUrl(string deepLink)

var deepLinkUriQuery = new Uri(deepLink).Query;
Debug.Log("GetAutoUpdateUrl::deepLinkUriQuery: " + deepLinkUriQuery);
var autoUpdateUrl = HttpUtility.UrlDecode(HttpUtility.ParseQueryString(deepLinkUriQuery).Get("url"));
var autoUpdateUrl = HttpUtility.ParseQueryString(deepLinkUriQuery).Get("url");
Debug.Log("GetAutoUpdateUrl::autoUpdateUrl: " + autoUpdateUrl);

return autoUpdateUrl;
Expand Down

0 comments on commit 4c1b026

Please sign in to comment.