From c80f1027a973ab47212e6d336748d60867ceb530 Mon Sep 17 00:00:00 2001 From: Niels Lanting Date: Mon, 7 Jan 2019 14:34:28 +0100 Subject: [PATCH] Type hint when unmarshalling Steam ID. (#287) --- social/social.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/social/social.go b/social/social.go index 851114d4b..75b051731 100644 --- a/social/social.go +++ b/social/social.go @@ -92,7 +92,7 @@ type GoogleProfile struct { // SteamProfile is an abbreviated version of a Steam profile. type SteamProfile struct { - SteamID uint64 `json:"steamid"` + SteamID uint64 `json:"steamid,string"` } // SteamError contains a possible error response from the Steam Web API. -- GitLab