Skip to content

Commit

Permalink
Return the UserInfo data correctly in _to_string()
Browse files Browse the repository at this point in the history
  • Loading branch information
juhoaws authored Nov 13, 2024
1 parent cd7ad38 commit f03ed28
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 f03ed28

Please sign in to comment.