From 0d85f1f85b752fa49d6b24096ce0d8d7b0e5e4be Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 19 Nov 2019 10:01:33 +0800 Subject: [PATCH] Update Queue.php --- app/admin/controller/Queue.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php index 56a211f3a..c7db0cf42 100644 --- a/app/admin/controller/Queue.php +++ b/app/admin/controller/Queue.php @@ -93,7 +93,8 @@ class Queue extends Controller public function start() { try { - $this->success(nl2br($this->app->console->call('xtask:start')->fetch())); + $message = nl2br($this->app->console->call('xtask:start')->fetch()); + stripos($message, '成功') !== false ? $this->success($message) : $this->error($message); } catch (HttpResponseException $exception) { throw $exception; } catch (\Exception $e) { @@ -108,7 +109,8 @@ class Queue extends Controller public function stop() { try { - $this->success(nl2br($this->app->console->call('xtask:stop')->fetch())); + $message = nl2br($this->app->console->call('xtask:stop')->fetch()); + stripos($message, '成功') !== false ? $this->success($message) : $this->error($message); } catch (HttpResponseException $exception) { throw $exception; } catch (\Exception $e) {