修复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,
headers,
});
if (res.body === 'success') {
if (res.statusCode === 200) {
return true;
} else {
throw new Error(res.body);