mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 13:14:58 +08:00
Fix Promise.defer warnings in index.js (#7409)
Signed-off-by: Aaron Raimist <aaron@raim.ist>
This commit is contained in:
parent
a5fb33de02
commit
54c46df0dc
@ -179,8 +179,7 @@ function makeRegistrationUrl(params) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getConfig(configJsonFilename) {
|
function getConfig(configJsonFilename) {
|
||||||
let deferred = Promise.defer();
|
return new Promise(function(resolve, reject) {
|
||||||
|
|
||||||
request(
|
request(
|
||||||
{ method: "GET", url: configJsonFilename },
|
{ method: "GET", url: configJsonFilename },
|
||||||
(err, response, body) => {
|
(err, response, body) => {
|
||||||
@ -194,10 +193,10 @@ function getConfig(configJsonFilename) {
|
|||||||
// from a file:// URI.
|
// from a file:// URI.
|
||||||
if (response) {
|
if (response) {
|
||||||
if (response.status == 404 || (response.status == 0 && body == '')) {
|
if (response.status == 404 || (response.status == 0 && body == '')) {
|
||||||
deferred.resolve({});
|
resolve({});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
deferred.reject({err: err, response: response});
|
reject({err: err, response: response});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -205,11 +204,10 @@ function getConfig(configJsonFilename) {
|
|||||||
// parameter, since this throws a parse error on empty
|
// parameter, since this throws a parse error on empty
|
||||||
// which breaks if there's no config.json and we're
|
// which breaks if there's no config.json and we're
|
||||||
// loading from the filesystem (see above).
|
// loading from the filesystem (see above).
|
||||||
deferred.resolve(JSON.parse(body));
|
resolve(JSON.parse(body));
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
})
|
||||||
return deferred.promise;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function onTokenLoginCompleted() {
|
function onTokenLoginCompleted() {
|
||||||
|
Loading…
Reference in New Issue
Block a user