mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-16 08:25:28 +00:00
Misc
This commit is contained in:
@@ -295,7 +295,7 @@ namespace ArchiSteamFarm {
|
||||
// Dashes are optional in the ID, strip them off for comparison
|
||||
string hash = deviceID.Substring(deviceIdentifier.Length).Replace("-", "");
|
||||
|
||||
return Utilities.IsValidHexadecimalString(hash);
|
||||
return (hash.Length > 0) && Utilities.IsValidHexadecimalString(hash);
|
||||
}
|
||||
|
||||
private string GenerateConfirmationHash(uint time, string tag = null) {
|
||||
|
||||
Reference in New Issue
Block a user