快捷动作【REFILL】修复

This commit is contained in:
Liwanyi 2024-04-07 08:32:07 +08:00
parent 6234424aa6
commit d3b85ec361
4 changed files with 13 additions and 5 deletions

View File

@ -1,5 +1,13 @@
# CHANGE # CHANGE
## 1.2.2
2024年04月07日
### 修改
- 快捷动作【REFILL】修复
## 1.2.1 ## 1.2.1
2024年04月03日 2024年04月03日

View File

@ -1,6 +1,6 @@
{ {
"name": "wuhu-torn-helper", "name": "wuhu-torn-helper",
"version": "1.2.1", "version": "1.2.2",
"description": "芜湖助手", "description": "芜湖助手",
"scripts": { "scripts": {
"release": "cross-env NODE_ENV=production rollup -c && node build.mjs", "release": "cross-env NODE_ENV=production rollup -c && node build.mjs",

File diff suppressed because one or more lines are too long

View File

@ -287,7 +287,7 @@ const handleRefil = (method: 'refillEnergy' | 'refillNerve' | 'refillCasinoToken
"referrerPolicy": "strict-origin-when-cross-origin", "referrerPolicy": "strict-origin-when-cross-origin",
"body": (() => { "body": (() => {
const data = new FormData(); const data = new FormData();
data.append('key', 'refillNerve'); data.append('key', method);
return data; return data;
})(), })(),
"method": "POST", "method": "POST",