From 78ae5e2e4fd201f9ac1ce039d2758e5f54f361ab Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Thu, 23 Mar 2023 19:55:01 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E8=AF=86=E5=88=AB=E7=A7=BB=E5=8A=A8?= =?UTF-8?q?=E7=AB=AF=E5=B9=B3=E5=8F=B0=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kernel/util/os_mobile.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/util/os_mobile.go b/kernel/util/os_mobile.go index 41a1d5b3f..439b8f69a 100644 --- a/kernel/util/os_mobile.go +++ b/kernel/util/os_mobile.go @@ -20,10 +20,10 @@ package util func GetOSPlatform() (plat, ver string) { if ContainerIOS == Container { - return "iOS", MobileOSVer + return "iOS " + MobileOSVer } if ContainerAndroid == Container { - return "Android", MobileOSVer + return "Android " + MobileOSVer } - return "Unknown", MobileOSVer + return "Unknown " + MobileOSVer }