Fixed typo in OSValidator.getOSFull "Mac" -> "Max"

- This fixes extension store on MacOS
This commit is contained in:
dorving 2022-07-10 01:27:24 +02:00
parent 630c43b07a
commit 623a6488e8

View File

@ -55,7 +55,7 @@ public class OSValidator {
if (isWindows()) {
return "Windows";
} else if (isMac()) {
return "Max";
return "Mac";
} else if (isUnix()) {
return "Linux";
} else {