diff --git a/OpenRA.Mods.Common/Widgets/Logic/MainMenuLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/MainMenuLogic.cs index 5fe6c33d60..5b68f0c2f7 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/MainMenuLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/MainMenuLogic.cs @@ -291,7 +291,8 @@ namespace OpenRA.Mods.Common.Widgets.Logic // Append system profile data if the player has opted in if (Game.Settings.Debug.SendSystemInformation) - newsURL += "&" + GetSystemInformation() + newsURL += "&sysinfoversion={0}&".F(SystemInformationVersion) + + GetSystemInformation() .Select(kv => kv.Key + "=" + Uri.EscapeUriString(kv.Value.Second)) .JoinWith("&");