@veloceapps/sdk 8.0.0-200 → 8.0.0-202

Sign up to get free protection for your applications and to get access to all the features.
@@ -746,7 +746,12 @@ class FlowStateService {
746
746
  if (assets) {
747
747
  this.flowStore = Object.assign(Object.assign({}, this.flowStore), { assets });
748
748
  }
749
- }), switchMap(() => this.executeRequest$(this.getDefaultExecutionRequestDTO())), switchMap(() => this.calculate$()), tap$1(() => this.quoteDraftService.finalizeInit()), map$1(noop));
749
+ }), switchMap(() => {
750
+ if (this.flowInfoService.isLegacy) {
751
+ return of(null);
752
+ }
753
+ return this.executeRequest$(this.getDefaultExecutionRequestDTO());
754
+ }), switchMap(() => this.calculate$()), tap$1(() => this.quoteDraftService.finalizeInit()), map$1(noop));
750
755
  }
751
756
  calculate$() {
752
757
  var _a;