1
0
mirror of https://gitcode.com/gh_mirrors/re/react-native-pushy.git synced 2025-10-31 13:23:12 +08:00
Code Issues Packages Projects Releases Wiki Activity GitHub Gitee

修复BUG: 无法获取来自服务器的报错信息

This commit is contained in:
tdzl2003
2016-05-04 23:37:01 +08:00
parent 95dd69bd84
commit ed7fb3fdad
2 changed files with 3 additions and 3 deletions

View File

@@ -50,7 +50,7 @@ export async function checkUpdate(APPKEY) {
});
if (resp.status !== 200) {
throw new Error(resp.message);
throw new Error((await resp.json()).message);
}
return await resp.json();