@meri-imperiumi/signalk-meshtastic 1.2.0 → 1.2.1
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/README.md +2 -0
- package/package.json +1 -1
- package/plugin/index.js +4 -0
package/README.md
CHANGED
|
@@ -91,6 +91,8 @@ Metrics used:
|
|
|
91
91
|
|
|
92
92
|
## Changes
|
|
93
93
|
|
|
94
|
+
* 1.2.1 (2025-09-28)
|
|
95
|
+
- Fixed issue with Signal K servers that don't have navigation.position set
|
|
94
96
|
* 1.2.0 (2025-09-28)
|
|
95
97
|
- Safety for nodes in DB that don't have a "last seen" timestamp
|
|
96
98
|
- Made connection status notifications clearer
|
package/package.json
CHANGED
package/plugin/index.js
CHANGED
|
@@ -822,6 +822,10 @@ module.exports = (app) => {
|
|
|
822
822
|
// Not connected to Meshtastic yet
|
|
823
823
|
return;
|
|
824
824
|
}
|
|
825
|
+
if (v.value.latitude === null) {
|
|
826
|
+
// No position
|
|
827
|
+
return;
|
|
828
|
+
}
|
|
825
829
|
if (!settings.communications || !settings.communications.send_position) {
|
|
826
830
|
return;
|
|
827
831
|
}
|