Skip to content

Commit dc834fe

Browse files
committed
Update OS identifiers
1 parent c1f65eb commit dc834fe

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Assets/Thirdweb/Core/Scripts/Utils.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -402,20 +402,20 @@ public static string GetRuntimePlatform()
402402
switch (Application.platform)
403403
{
404404
case RuntimePlatform.Android:
405-
return "android";
405+
return "Android OS";
406406
case RuntimePlatform.IPhonePlayer:
407-
return "ios";
407+
return "iOS";
408408
case RuntimePlatform.WebGLPlayer:
409-
return "webgl";
409+
return "WebGL";
410410
case RuntimePlatform.WindowsPlayer:
411411
case RuntimePlatform.WindowsEditor:
412-
return "win";
412+
return "Windows";
413413
case RuntimePlatform.OSXPlayer:
414414
case RuntimePlatform.OSXEditor:
415-
return "mac";
415+
return "Mac OS";
416416
case RuntimePlatform.LinuxPlayer:
417417
case RuntimePlatform.LinuxEditor:
418-
return "linux";
418+
return "Linux";
419419
default:
420420
return Application.platform.ToString().ToLower();
421421
}

0 commit comments

Comments
 (0)