ComposerUpdate

This commit is contained in:
Anyon 2019-11-28 14:52:18 +08:00
parent 646c330c8d
commit 7fb9287203
2 changed files with 5 additions and 5 deletions

View File

@ -401,12 +401,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "7f20352fb92f249f64f9299cfdb9eda386adca86" "reference": "1881f6a468e2c1e4eff5f18f4aa7aafd2752c196"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/7f20352fb92f249f64f9299cfdb9eda386adca86", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/1881f6a468e2c1e4eff5f18f4aa7aafd2752c196",
"reference": "7f20352fb92f249f64f9299cfdb9eda386adca86", "reference": "1881f6a468e2c1e4eff5f18f4aa7aafd2752c196",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -426,7 +426,7 @@
"qiniu/php-sdk": "^7.2", "qiniu/php-sdk": "^7.2",
"topthink/framework": "5.1.*" "topthink/framework": "5.1.*"
}, },
"time": "2019-11-28T03:18:19+00:00", "time": "2019-11-28T06:50:47+00:00",
"type": "library", "type": "library",
"installation-source": "dist", "installation-source": "dist",
"autoload": { "autoload": {

View File

@ -79,7 +79,7 @@ class NodeService extends Service
static $data = []; static $data = [];
if (empty($force)) { if (empty($force)) {
if (count($data) > 0) return $data; if (count($data) > 0) return $data;
$data = $this->app->cache->get('system_auth_node', []); $data = (array)$this->app->cache->get('system_auth_node');
if (count($data) > 0) return $data; if (count($data) > 0) return $data;
} else { } else {
$data = []; $data = [];