mirror of
https://github.com/overte-org/overte.git
synced 2025-04-11 13:42:38 +02:00
Send state parameter to oauth server to redirect to steam login
This commit is contained in:
parent
7687eb9948
commit
4f4239f3c9
1 changed files with 2 additions and 1 deletions
|
@ -289,7 +289,8 @@ public class LoginFragment extends Fragment
|
|||
}
|
||||
|
||||
private void updateOauthState() {
|
||||
mOauthState = Long.toString(new Random().nextLong());
|
||||
// as we only use oauth for steam that's ok for now
|
||||
mOauthState = "steam-" + Long.toString(new Random().nextLong());
|
||||
}
|
||||
|
||||
private String buildAuthorizeUrl() {
|
||||
|
|
Loading…
Reference in a new issue