Skip to content

Commit

Permalink
Merge pull request #59 from aws-solutions-library-samples/juhoaws-pat…
Browse files Browse the repository at this point in the history
…ch-1

Return the UserInfo data correctly in _to_string()
  • Loading branch information
lucasschejtman authored Nov 13, 2024
2 parents cd7ad38 + f03ed28 commit 10bb887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GodotSample/AWSGameSDK/AWSGameSDK.gd
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class UserInfo:
var refresh_token_expires_in = "";

func _to_string():
print("user_id: " + user_id + "\nguest_secret: " + guest_secret + "\nauth_token: " + auth_token +
return("user_id: " + user_id + "\nguest_secret: " + guest_secret + "\nauth_token: " + auth_token +
"\napple_id: " + apple_id + "\nsteam_id: " + steam_id + "\ngoogle_play_id: " + google_play_id
+ "\nfacebook_id: " + facebook_id
+ "\nrefresh_token: " + refresh_token + "\nauth_token_expires_in: " + str(auth_token_expires_in)
Expand Down

0 comments on commit 10bb887

Please sign in to comment.