From 39faba83d70da1f7cfeed132e57457d3c89f6800 Mon Sep 17 00:00:00 2001 From: int2001 Date: Sat, 20 Jan 2024 13:44:48 +0000 Subject: [PATCH] Try to inform local FLRig-Bridge of QSY-wish --- assets/js/sections/bandmap_list.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/assets/js/sections/bandmap_list.js b/assets/js/sections/bandmap_list.js index 666c0880c..ef8690356 100644 --- a/assets/js/sections/bandmap_list.js +++ b/assets/js/sections/bandmap_list.js @@ -148,6 +148,9 @@ $(function() { $(document).on('click','.spotted_call', function() { if (Date.now()-qso_window_last_seen < 2000) { bc2qso.postMessage({ frequency: this.parentNode.cells[1].textContent*1000, call: this.innerText }); + try { + irrelevant=fetch('http://127.0.0.1:54321/'+this.parentNode.cells[1].textContent*1000); + } finally {} } else { let cl={}; cl.qrg=this.parentNode.cells[1].textContent*1000; @@ -237,5 +240,3 @@ setInterval(updateFromCAT, 3000); $('.radios').change(updateFromCAT); }); - -