Compare commits

...

1 Commits

Author SHA1 Message Date
5092ba8763 Return awaited promise 2024-03-20 12:33:54 -07:00

View File

@ -364,7 +364,7 @@ export default class ConditionManager extends EventEmitter {
let nextLegOptions = { ...options };
delete nextLegOptions.onPartialResponse;
const results = Promise.all(
const results = await Promise.all(
this.conditions.map((condition) => condition.requestLADConditionResult(nextLegOptions))
);