diff --git a/QuestAppVersionSwitcher/Properties/AndroidManifest.xml b/QuestAppVersionSwitcher/Properties/AndroidManifest.xml index e914d63..823565d 100644 --- a/QuestAppVersionSwitcher/Properties/AndroidManifest.xml +++ b/QuestAppVersionSwitcher/Properties/AndroidManifest.xml @@ -1,5 +1,5 @@  - + diff --git a/QuestAppVersionSwitcher/Properties/AssemblyInfo.cs b/QuestAppVersionSwitcher/Properties/AssemblyInfo.cs index 884e3cc..4cdd125 100644 --- a/QuestAppVersionSwitcher/Properties/AssemblyInfo.cs +++ b/QuestAppVersionSwitcher/Properties/AssemblyInfo.cs @@ -22,5 +22,5 @@ // Minor Version // Build Number // Revision -[assembly: AssemblyVersion("1.14.1.0")] -[assembly: AssemblyFileVersion("1.14.1.0")] +[assembly: AssemblyVersion("1.14.2.0")] +[assembly: AssemblyFileVersion("1.14.2.0")] diff --git a/QuestAppVersionSwitcher/QAVSWebViewClient.cs b/QuestAppVersionSwitcher/QAVSWebViewClient.cs index 2e19b97..f5ab765 100644 --- a/QuestAppVersionSwitcher/QAVSWebViewClient.cs +++ b/QuestAppVersionSwitcher/QAVSWebViewClient.cs @@ -2,6 +2,7 @@ using System.IO; using Android.Webkit; using ComputerUtils.Android; +using ComputerUtils.Android.Logging; using QuestAppVersionSwitcher.Core; namespace QuestAppVersionSwitcher @@ -13,10 +14,10 @@ public class QAVSWebViewClient : WebViewClient public string injectedJs = ""; private bool isLoggingOut = false; - // Grab token public override void OnPageFinished(WebView view, string url) { + Logger.Log("WebView on page finished: " + url.Split('?')[0]); CookieManager.Instance.Flush(); if(!url.ToLower().Contains("localhost") && !url.ToLower().StartsWith("https://auth.meta.com") && !url.ToLower().Contains("http://127.0.0.1")) { @@ -71,7 +72,7 @@ public override void OnPageFinished(WebView view, string url) if (url.ToLower().StartsWith("https://auth.meta.com/language")) { // redirect to oculus page - view.LoadUrl("https://auth.meta.com/settings"); + view.LoadUrl("https://auth.meta.com/settings/account/"); } }