diff --git a/ArchiSteamFarm/OS.cs b/ArchiSteamFarm/OS.cs index b6891c2eb..3d6706d5d 100644 --- a/ArchiSteamFarm/OS.cs +++ b/ArchiSteamFarm/OS.cs @@ -36,7 +36,7 @@ namespace ArchiSteamFarm { // We need to keep this one assigned and not calculated on-demand internal static readonly string ProcessFileName = Process.GetCurrentProcess().MainModule?.FileName ?? throw new InvalidOperationException(nameof(ProcessFileName)); - internal static string Variant => RuntimeInformation.OSDescription.Trim(); + internal static string Variant => RuntimeInformation.OSArchitecture + " " + RuntimeInformation.OSDescription.Trim(); private static Mutex? SingleInstance;