We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d740e81 commit b69c3d3Copy full SHA for b69c3d3
renderer.js
@@ -208,10 +208,14 @@ async function informWavelog(CAT) {
208
let data = {
209
radio: "WLGate",
210
key: cfg.wavelog_key,
211
- radio: cfg.wavelog_radioname,
212
- power: CAT.power,
213
- // ptt: CAT.ptt, // maybe later
+ radio: cfg.wavelog_radioname
214
};
+ if (CAT.power !== undefined) {
+ data.power = CAT.power;
215
+ }
216
+ // if (CAT.ptt !== undefined) { // not impleented yet in Wavelog, so maybe later
217
+ // data.ptt = CAT.ptt;
218
+ // }
219
if (CAT.split == '1') {
220
// data.split=true; // not implemented yet in Wavelog
221
data.frequency=CAT.vfoB;
0 commit comments