Skip to content
This repository was archived by the owner on Jul 16, 2020. It is now read-only.

Commit 283e04e

Browse files
committed
Desktop Builds: Fix issue where you didn't have to auth twice for different interactive projects
There was an issue where if you had more than one, different interactive project installed on your PC, the SDK would not re-prompt the user to log in. The correct behavior is to prompt the user to re-authenticate with Mixer the first time when they launch a game with a different interactive project ID. Behavior will likely not be noticable for developers because you will only have 1 project ID at this point. But the case could hit end users.
1 parent 778ea9e commit 283e04e

File tree

7 files changed

+457
-210
lines changed

7 files changed

+457
-210
lines changed

Source/InteractiveSDK/Assets/MixerInteractive/Source/DLLs/ERA/Microsoft.Mixer.Era.CSharp.dll.meta

+157-75
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/InteractiveSDK/Assets/MixerInteractive/Source/DLLs/Shared/InteractivityManager.cs

+4
Original file line numberDiff line numberDiff line change
@@ -1013,6 +1013,8 @@ private bool TryGetAuthTokensFromCache()
10131013
key = key.OpenSubKey("MixerInteractive", true);
10141014
key.CreateSubKey("Configuration");
10151015
key = key.OpenSubKey("Configuration", true);
1016+
key.CreateSubKey(AppID + "-" + ProjectVersionID);
1017+
key = key.OpenSubKey(AppID + "-" + ProjectVersionID, true);
10161018
_authToken = key.GetValue("MixerInteractive-AuthToken") as string;
10171019
_oauthRefreshToken = key.GetValue("MixerInteractive-RefreshToken") as string;
10181020
#elif UNITY_WSA
@@ -1042,6 +1044,8 @@ private void WriteAuthTokensToCache()
10421044
key = key.OpenSubKey("MixerInteractive", true);
10431045
key.CreateSubKey("Configuration");
10441046
key = key.OpenSubKey("Configuration", true);
1047+
key.CreateSubKey(AppID + "-" + ProjectVersionID);
1048+
key = key.OpenSubKey(AppID + "-" + ProjectVersionID, true);
10451049
key.SetValue("MixerInteractive-AuthToken", _authToken);
10461050
key.SetValue("MixerInteractive-RefreshToken", _oauthRefreshToken);
10471051
#elif UNITY_WSA

0 commit comments

Comments
 (0)