Skip to content

Commit 9df132c

Browse files
committed
fix new account signups for steam
1 parent 4c96b84 commit 9df132c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Runtime/Code/CoreUI/Login/LoginApp.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ public async void AuthenticateFirebaseWithApple(IAppleIDCredential credential) {
215215
return;
216216
}
217217

218-
if (selfRes.data.Length == 0) {
218+
if (selfRes.data == "{}") {
219219
this.RouteToPage(this.mobileMode ? this.mobilePickUsernamePage : this.pickUsernamePage, true);
220220
return;
221221
}
@@ -296,7 +296,7 @@ public async void AuthenticateFirebaseWithSteam() {
296296
return;
297297
}
298298

299-
if (selfRes.data.Length == 0) {
299+
if (selfRes.data == "{}") {
300300
this.loading = false;
301301
this.RouteToPage(this.mobileMode ? this.mobilePickUsernamePage : this.pickUsernamePage, true);
302302
this.steamLoginButton.SetLoading(false);

0 commit comments

Comments
 (0)