From 6b85dd45fde78b2da539d4823409b49f67b44eeb Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Wed, 28 Feb 2024 12:11:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0wget=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/Auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controller/api/Auth.php b/app/controller/api/Auth.php index 7931ebb5..f98e05da 100755 --- a/app/controller/api/Auth.php +++ b/app/controller/api/Auth.php @@ -1557,7 +1557,7 @@ class Auth extends BaseController // $phoneBrand = $this->request->param('phone_brand', ''); // $queryBuilder = Db::name('AppUpdate')->where('type', $type); if ($type == 3) { - $android = (Db::name('AppUpdate')->where('type', 1)->where('phone_brand', '')->order('id', 'desc')->find()) ?? (object)[]; + $android = (Db::name('AppUpdate')->where('type', 1)->where('phone_brand', '')->where('is_wget',0)->order('id', 'desc')->find()) ?? (object)[]; $ios = (Db::name('AppUpdate')->where('type', 2)->where('phone_brand', '')->order('id', 'desc')->find()) ?? (object)[]; return app('json')->success(compact('android', 'ios')); } else {