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 f362481 commit 174031cCopy full SHA for 174031c
main.js
@@ -322,6 +322,9 @@ function normalizeTxPwr(adifdata) {
322
323
function manipulateAdifData(adifdata) {
324
adifdata = normalizeTxPwr(adifdata);
325
+
326
+ // Remove K_INDEX fields - fix for Log4OM
327
+ adifdata = adifdata.replace(/<K_INDEX:\d+>[^<]+/gi, '');
328
// add more manipulation if necessary here
329
// ...
330
return adifdata;
0 commit comments