raain-app 1.5.21 → 1.5.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1311,7 +1311,8 @@ class CompareManager {
1311
1311
  const dates = targetsOrdered.map((t) => t.date);
1312
1312
  const qualities = dates
1313
1313
  .filter((d) => !!d)
1314
- .map((d) => this.getRainComputationQuality(d));
1314
+ .map((d) => this.getRainComputationQuality(d))
1315
+ .filter((rcq) => !!rcq);
1315
1316
  this.buildCompares = SpeedMatrixContainer.BuildCompares(qualities, !withCompareDuplicate);
1316
1317
  return this.buildCompares;
1317
1318
  }