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

fix typo.

This commit is contained in:
Richard Lewis
2017-12-05 21:57:28 +00:00
parent fc3287c49f
commit d62520482a

View File

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