1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Fix error message.

This commit is contained in:
Richard Lewis
2017-12-05 21:56:35 +00:00
parent 7f86ed35a3
commit fc3287c49f

View File

@@ -92,9 +92,8 @@ class ScalarAuthClient {
} else if (response.statusCode / 100 !== 2) {
defer.reject({statusCode: response.statusCode});
} else if (!body) {
defer.reject(new Error("Missing scalar_token in response"));
defer.reject(new Error("Missing page_title in response"));
} else {
console.warn("page title body", body);
let title = "";
if (body.page_title_cache_item && body.page_title_cache_item.cached_title) {
title = body.page_title_cache_item.cached_title;