diff --git a/src/utils/utils.js b/src/utils/utils.js index 521af68..813bbf4 100644 --- a/src/utils/utils.js +++ b/src/utils/utils.js @@ -27,6 +27,9 @@ export default class Utils { if (!steamId) { return false; } + if (steamId.length !== 17) { + return false; + } if (SteamIdCache.has(steamId)) { return SteamIdCache.get(steamId);