Avoid swallowing rejected font loading promise
This commit is contained in:
parent
cd1f5fd04a
commit
c060dedf20
1 changed files with 3 additions and 4 deletions
|
@ -740,9 +740,8 @@ module.exports = function(options, repo, params, id, dataResolver) {
|
||||||
return res.send(info);
|
return res.send(info);
|
||||||
});
|
});
|
||||||
|
|
||||||
return new Promise(function(resolve, reject) {
|
return Promise.all([fontListingPromise, renderersReadyPromise]).then(function() {
|
||||||
Promise.all([fontListingPromise, renderersReadyPromise]).then(function() {
|
return app;
|
||||||
resolve(app);
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue