From 4ed448516b23a66b62cce38ad7112ea5b4e936d3 Mon Sep 17 00:00:00 2001 From: gsd Date: Thu, 16 Feb 2023 15:38:17 +0300 Subject: [PATCH] =?UTF-8?q?=D0=91=D0=BB=D1=8F=D1=82=D1=8C=20=D0=BA=D0=B0?= =?UTF-8?q?=D0=BA=20=D0=B6=D0=B5=20=D0=B7=D0=B0=D0=B5=D0=B1=D0=B0=D0=BB?= =?UTF-8?q?=D0=B0=20=D0=B4=D0=B6=D0=B0=D0=B2=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/app/entities/other/SteamID.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/app/entities/other/SteamID.java b/src/main/java/app/entities/other/SteamID.java index dfb3bd5..c5dd6fd 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 Long 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.parseLong(steam64); + this.steam64 = Long.valueOf(steam64); this.community_url = String.format("https://steamcommunity.com/profiles/%s", steam64); this.account_id = account_id; } @@ -30,7 +30,7 @@ public class SteamID { public boolean is(SteamID steamID){ try { - if (steam64 == steamID.steam64) return true; + if (steam64.equals(steamID.steam64)) return true; else return false; } catch (NullPointerException err) { throw new InvalidSteamID();