Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 80146c2

Browse files
committed
Always include machine name in the fingerprint.
Even if it means including it twice ;)
1 parent dde033d commit 80146c2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/GitHub.Api/ApiClientConfiguration.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ public static string MachineFingerprint
4949
{
5050
get
5151
{
52-
return GetSha256Hash(Info.ApplicationInfo.ApplicationDescription + ":" + GetMachineIdentifier());
52+
return GetSha256Hash(
53+
Info.ApplicationInfo.ApplicationDescription + ":" +
54+
GetMachineIdentifier() + ":" +
55+
GetMachineNameSafe());
5356
}
5457
}
5558

0 commit comments

Comments
 (0)