Do `reflect` in the same `map`

pull/21833/head
Luke Barnard 2017-07-13 17:20:17 +01:00
parent c9f3a12693
commit f78a49b3a9
1 changed files with 2 additions and 2 deletions

View File

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