Merge branch 'update-settings-in-ui' of https://github.com/coralproject/talk into update-settings-in-ui

This commit is contained in:
David Erwin
2016-11-09 17:13:27 -05:00
7 changed files with 131 additions and 25 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ const handleResp = res => {
if (res.status === 401) {
throw new Error('Not Authorized to make this request');
} else if (res.status > 399) {
throw new Error('Error! Status ' + res.status);
throw new Error('Error! Status ', res.status);
} else if (res.status === 204) {
return res.text();
} else {