Do reflect in the same map

This commit is contained in:
Luke Barnard 2017-07-13 17:20:17 +01:00
parent c9f3a12693
commit f78a49b3a9

View file

@ -60,8 +60,8 @@ export async function getCompletions(query: string, selection: SelectionRange, f
PROVIDERS.map((provider) => { PROVIDERS.map((provider) => {
// Convert to bluebird promise so that we can do a timeout // Convert to bluebird promise so that we can do a timeout
const p = Promise.resolve(provider.getCompletions(query, selection, force)); const p = Promise.resolve(provider.getCompletions(query, selection, force));
return p.timeout(PROVIDER_COMPLETION_TIMEOUT); return p.timeout(PROVIDER_COMPLETION_TIMEOUT).reflect();
}).map((p) => p.reflect()), }),
); );
return completionsList.filter( return completionsList.filter(