From afaffd2a0c785e9fff9c8f7d93686b769d001934 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Fri, 3 Jan 2020 13:31:19 +0800 Subject: [PATCH] * fix bug for download client. --- xuanxuan/module/misc/ext/control/downloadclient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xuanxuan/module/misc/ext/control/downloadclient.php b/xuanxuan/module/misc/ext/control/downloadclient.php index dc26034c18..9fe18da434 100755 --- a/xuanxuan/module/misc/ext/control/downloadclient.php +++ b/xuanxuan/module/misc/ext/control/downloadclient.php @@ -53,7 +53,7 @@ class myMisc extends misc $agentOS = helper::getOS(); if(strpos($agentOS, 'Windows') !== false) $os = 'win64'; if(strpos($agentOS, 'Linux') !== false) $os = 'linux64'; - if(strpos($agentOS, 'Mac') !== false) $os = 'mac'; + if(strpos($agentOS, 'Mac') !== false) $os = 'mac64'; $this->view->os = $os; }