From 4850c690e0b60501d09d32774ca3719a66c8bc7a Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 27 Jun 2022 09:53:14 +0800 Subject: [PATCH] Update Queue.php --- app/admin/controller/Queue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php index 21ff705e0..a7152eed1 100644 --- a/app/admin/controller/Queue.php +++ b/app/admin/controller/Queue.php @@ -47,7 +47,7 @@ class Queue extends Controller $this->iswin = ProcessService::iswin(); if ($this->super = AdminService::isSuper()) { $this->command = ProcessService::think('xadmin:queue start'); - if (!ProcessService::iswin() && !empty($_SERVER['USER'])) { + if (!$this->iswin && !empty($_SERVER['USER'])) { $this->command = "sudo -u {$_SERVER['USER']} {$this->command}"; } }