Skip to content

Commit 2294f63

Browse files
[[ Bug ]] Make sure the updater reports the correct platform
This patch makes sure the updater stack sends the correct platform string to the sever when running on OS X and Windows 64 bit machines.
1 parent 38375c4 commit 2294f63

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

builder/installer/installeruiupdatecheckcardbehavior.livecodescript

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -713,13 +713,9 @@ end getBuildNumber
713713
private function getPlatformString
714714
switch the platform
715715
case "Win32"
716-
return "windows/x86"
716+
return "windows" & slash & the processor
717717
case "MacOS"
718-
if the processor is "x86" then
719-
return "mac/x86"
720-
else
721-
return "mac/ppc"
722-
end if
718+
return "mac" & slash & the processor
723719
case "Linux"
724720
return "linux" & slash & the processor
725721
end switch

0 commit comments

Comments
 (0)