From d6ba893dc4422dbc0b693db75f13d750118d5311 Mon Sep 17 00:00:00 2001 From: gsd Date: Thu, 16 Feb 2023 15:43:03 +0300 Subject: [PATCH] =?UTF-8?q?=D1=8F=20=D0=B2=20=D0=B0=D1=85=D1=83=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/app/entities/other/SteamID.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/app/entities/other/SteamID.java b/src/main/java/app/entities/other/SteamID.java index c5dd6fd..e5a5232 100644 --- a/src/main/java/app/entities/other/SteamID.java +++ b/src/main/java/app/entities/other/SteamID.java @@ -7,7 +7,7 @@ import com.fasterxml.jackson.databind.annotation.JsonSerialize; public class SteamID { public String steam3; public String steam2; - public Long steam64; + public String steam64; public String community_url; public long account_id; @@ -18,7 +18,7 @@ public class SteamID { public SteamID(String steam3, String steam2, String steam64, long account_id) { this.steam3 = steam3; this.steam2 = steam2; - this.steam64 = Long.valueOf(steam64); + this.steam64 = steam64; this.community_url = String.format("https://steamcommunity.com/profiles/%s", steam64); this.account_id = account_id; }