diff --git a/app/admin/sys.php b/app/admin/sys.php index ce68edc2d..3da9f72f6 100644 --- a/app/admin/sys.php +++ b/app/admin/sys.php @@ -46,10 +46,9 @@ if (!function_exists('sysoplog')) { $app = app(); return $app->db->name('SystemOplog')->insert([ 'node' => \think\admin\service\NodeService::instance($app)->getCurrent(), - 'geoip' => PHP_SAPI === 'cli' ? '127.0.0.1' : $app->request->ip(), - 'action' => $action, - 'content' => $content, - 'username' => PHP_SAPI === 'cli' ? 'cli' : $app->session->get('user.username'), + 'geoip' => $app->request->isCli() ? '127.0.0.1' : $app->request->ip(), + 'action' => $action, 'content' => $content, + 'username' => $app->request->isCli() ? 'cli' : $app->session->get('user.username', ''), ]); } }