@lifefinder/vsm-mqtt-client-open-source 0.0.51 → 0.0.53
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 +1 -1
- package/rules.js +1 -1
- package/solvers/none.js +1 -1
package/package.json
CHANGED
package/rules.js
CHANGED
|
@@ -217,7 +217,7 @@ const rules = [
|
|
|
217
217
|
console.log("Almanac update: Attempted")
|
|
218
218
|
|
|
219
219
|
// Run this asynchronously rather than wait
|
|
220
|
-
if (!solver.api.
|
|
220
|
+
if (!solver.api.loadAlmanac) {
|
|
221
221
|
console.log("Almanac update: failed No API")
|
|
222
222
|
return next;
|
|
223
223
|
}
|
package/solvers/none.js
CHANGED
|
@@ -33,7 +33,7 @@ module.exports.api = {
|
|
|
33
33
|
if (!args.k)
|
|
34
34
|
return undefined;
|
|
35
35
|
// The almanac loading procedure may be valid also for non-loracloud solvers
|
|
36
|
-
return loraCloudLoadAlmanac
|
|
36
|
+
return loraCloudLoadAlmanac(args);
|
|
37
37
|
},
|
|
38
38
|
checkArgumentsOrExit: (args)=>{if (args.k) console.log("No position solver, using loracloud key (-k) for almanac downloads") },
|
|
39
39
|
getVersionString: ()=>"No Position Solver",
|