@wemap/positioning 2.3.7 → 2.3.8

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.
package/package.json CHANGED
@@ -81,5 +81,5 @@
81
81
  "lint": "eslint --ext .js,.jsx --quiet src",
82
82
  "test": "mocha -r esm \"src/**/*.spec.js\""
83
83
  },
84
- "version": "2.3.7"
84
+ "version": "2.3.8"
85
85
  }
@@ -191,9 +191,9 @@ class PositioningHandler {
191
191
  }
192
192
  if (!provider.getItineraryInfo) {
193
193
  Logger.warn('Cannot getItineraryInfo from ' + provider.constructor.name);
194
- return;
194
+ return null;
195
195
  }
196
- provider.getItineraryInfo();
196
+ return provider.getItineraryInfo();
197
197
  }
198
198
 
199
199
  }