Skip to content

Commit

Permalink
fix PlayerIDInfo returning string instead of int64
Browse files Browse the repository at this point in the history
  • Loading branch information
bshore committed Apr 17, 2021
1 parent db9b935 commit 7dc530f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/player.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ type MergedPlayer struct {
type PlayerIDInfo struct {
Name string `json:"Name,omitempty"`
HZPlayerName string `json:"hz_player_name,omitempty"`
PlayerID int64 `json:"player_id"`
PlayerID string `json:"player_id"`
Portal string `json:"portal"`
PortalID string `json:"portal_id"`
PrivacyFlag string `json:"privacy_flag"`
Expand Down

0 comments on commit 7dc530f

Please sign in to comment.