diff --git a/CHANGELOG.md b/CHANGELOG.md index 4789611..2503019 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### 08-25 v1.3.39 - [*] 优化页面表现 +- [*] 修复 `V11` 无法测试账号 ### 08-23 v1.3.38 diff --git a/app/Http/Controllers/ParseController.php b/app/Http/Controllers/ParseController.php index 4462d82..38d61a9 100644 --- a/app/Http/Controllers/ParseController.php +++ b/app/Http/Controllers/ParseController.php @@ -619,7 +619,7 @@ public function getDownloadLinks(Request $request) if ($account["account_type"] !== "access_token") return ResponseController::accountTypeWrong($account_id); $arr["access_token"] = $account["access_token"]; } else if ($parse_mode === 11) { - if ($account["account_type"] !== "") return ResponseController::accountTypeWrong($account_id); + if ($account["account_type"] !== "enterprise") return ResponseController::accountTypeWrong($account_id); $arr["cookie"] = $account["cookie"]; $arr["cid"] = $account["cid"]; } else {