mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-12 01:00:34 +08:00
17 lines
364 B
JavaScript
17 lines
364 B
JavaScript
/* global $response, $done */
|
|
|
|
let body = $response.body;
|
|
body = JSON.parse(body);
|
|
if (body?.response) {
|
|
body.response = body.response || {};
|
|
body.response.user = body.response.user || {};
|
|
body.response.user.is_premium = true;
|
|
}
|
|
if (body?.user) {
|
|
body.user = body.user || {};
|
|
body.user.is_premium = true;
|
|
}
|
|
body = JSON.stringify(body);
|
|
|
|
$done({ body });
|