修复chronocat发送成功但显示出错

This commit is contained in:
child 2023-11-02 22:11:13 +08:00
parent b8cb1588fc
commit b07c30aff7

View File

@ -634,7 +634,7 @@ export default class NotificationService {
json: data, json: data,
headers, headers,
}); });
if (res.body === 'success') { if (res.statusCode === 200) {
return true; return true;
} else { } else {
throw new Error(res.body); throw new Error(res.body);