Skip to content

Commit

Permalink
Merge pull request #193 from huankong233/dev
Browse files Browse the repository at this point in the history
[*] 修复显示账户不足
  • Loading branch information
huankong233 authored Aug 23, 2024
2 parents 051b024 + f6c40ca commit e86a7b7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ MAIL_FROM_NAME=Example
MAIL_TO_ADDRESS=[email protected]
MAIL_TO_NAME=Example

_94LIST_VERSION=1.3.37
_94LIST_VERSION=1.3.38
_94LIST_SLEEP=3
_94LIST_MAX_ONCE=20
_94LIST_PASSWORD=""
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## 2024

### 08-23 v1.3.38

- [*] 修复显示账户不足

### 08-22 v1.3.37

- [*] 修复不能修改企业账户信息
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 @@ -32,7 +32,7 @@ public function getConfig(Request $request)
"announce" => $config["announce"],
"debug" => config("app.debug"),
"max_once" => $config["max_once"],
"have_account" => self::getRandomCookie(["超级会员"], false)->getData(true)["code"] === 200,
"have_account" => self::getRandomCookie($config["parse_mode"] === 11 ? ["超级会员", "普通会员", "普通用户"] : ["超级会员"], false)->getData(true)["code"] === 200,
"have_login" => Auth::check(),
"need_inv_code" => $config["need_inv_code"],
"need_password" => $config["password"] !== "",
Expand Down
2 changes: 1 addition & 1 deletion config/94list.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"fake_wx_user_agent" => "Mozilla/5.0 (Linux; Android 7.1.1; MI 6 Build/NMF26X; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.132 MQQBrowser/6.2 TBS/043807 Mobile Safari/537.36 MicroMessenger/6.6.1.1220(0x26060135) NetType/4G Language/zh_CN MicroMessenger/6.6.1.1220(0x26060135) NetType/4G Language/zh_CN miniProgram",
"fake_cookie" => "BAIDUID=A4FDFAE43DDBF7E6956B02F6EF715373:FG=1; BAIDUID_BFESS=A4FDFAE43DDBF7E6956B02F6EF715373:FG=1; newlogin=1",

"version" => "1.3.37",
"version" => "1.3.38",
"sleep" => (int)env("_94LIST_SLEEP", 3),
"max_once" => (int)env("_94LIST_MAX_ONCE", 20),
"password" => env("_94LIST_PASSWORD", ""),
Expand Down

0 comments on commit e86a7b7

Please sign in to comment.