@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
|
@@ -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
|
}
|