ComposerUpdate

This commit is contained in:
Anyon 2020-12-15 18:46:52 +08:00
parent 6b20b17a9d
commit 5c90ed8ecf
3 changed files with 6 additions and 6 deletions

View File

@ -937,12 +937,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "7fc5a459d6d05cb905b1e0c604a50e9a36795ecb" "reference": "e36a26234c88c85d48ebc69beab9e953c6d79dd5"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/7fc5a459d6d05cb905b1e0c604a50e9a36795ecb", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/e36a26234c88c85d48ebc69beab9e953c6d79dd5",
"reference": "7fc5a459d6d05cb905b1e0c604a50e9a36795ecb", "reference": "e36a26234c88c85d48ebc69beab9e953c6d79dd5",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -959,7 +959,7 @@
"ext-mbstring": "*", "ext-mbstring": "*",
"topthink/framework": "^6.0" "topthink/framework": "^6.0"
}, },
"time": "2020-12-15T10:00:46+00:00", "time": "2020-12-15T10:37:34+00:00",
"type": "library", "type": "library",
"extra": { "extra": {
"think": { "think": {

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php <?php
// This file is automatically generated at:2020-12-15 18:12:50 // This file is automatically generated at:2020-12-15 18:46:36
declare (strict_types = 1); declare (strict_types = 1);
return array ( return array (
0 => 'think\\admin\\Library', 0 => 'think\\admin\\Library',

View File

@ -175,7 +175,7 @@ class QueueService extends Service
} catch (\Exception | \Error $exception) { } catch (\Exception | \Error $exception) {
return $this->progress($status, $message, $progress, $backline); return $this->progress($status, $message, $progress, $backline);
} }
while (count($data['history']) > 0 && $backline > 0) { while ($backline > 0 && count($data['history']) > 0) {
[--$backline, array_pop($data['history'])]; [--$backline, array_pop($data['history'])];
} }
if (is_numeric($status)) $data['status'] = intval($status); if (is_numeric($status)) $data['status'] = intval($status);