Update script

This commit is contained in:
SukkaW
2021-05-19 05:09:05 +08:00
parent ffff73bbd8
commit efdd56a82c
2 changed files with 40 additions and 39 deletions

View File

@@ -1,5 +1,6 @@
let body = $response.body
body=JSON.parse(body)
body['response']['user']['is_premium']=true
body=JSON.stringify(body)
$done({body})
let body = $response.body;
body = JSON.parse(body);
body['response']['user']['is_premium'] = true;
body = JSON.stringify(body);
$done({ body })