Skip to content

Commit

Permalink
Merge pull request #195 from huankong233/dev
Browse files Browse the repository at this point in the history
[*] 修复 `V11` 无法测试账号
  • Loading branch information
huankong233 authored Aug 25, 2024
2 parents 490dd63 + 662b289 commit ba867b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### 08-25 v1.3.39

- [*] 优化页面表现
- [*] 修复 `V11` 无法测试账号

### 08-23 v1.3.38

Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/ParseController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit ba867b0

Please sign in to comment.