From 725615fbe573c333a1445bb3b306ad1b4d23d484 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sat, 25 May 2019 01:45:05 +0200 Subject: [PATCH] display the mode from the metadata for ysf --- htdocs/openwebrx.js | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/openwebrx.js b/htdocs/openwebrx.js index 38f098e..01aafe7 100644 --- a/htdocs/openwebrx.js +++ b/htdocs/openwebrx.js @@ -1340,6 +1340,7 @@ function update_metadata(stringData) { break; case 'YSF': var strings = []; + if (meta.mode) strings.push("Mode: " + meta.mode); if (meta.source) strings.push("Source: " + meta.source); if (meta.target) strings.push("Destination: " + meta.target); if (meta.up) strings.push("Up: " + meta.up);