From 0110560dbd8e2d09695ae6e222a959d12f47e2a7 Mon Sep 17 00:00:00 2001 From: Smittix Date: Tue, 6 Jan 2026 21:17:49 +0000 Subject: [PATCH] Fix misleading 'No RTL-SDR devices found' warning in Listening Post MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The warning was triggered when ffmpeg was missing, but the message incorrectly said "No RTL-SDR devices found". Now properly shows "ffmpeg not found" with installation instructions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index 505b6dd..12cedc5 100644 --- a/templates/index.html +++ b/templates/index.html @@ -8250,8 +8250,8 @@ if (!data.rtl_fm) { warnings.push('rtl_fm not found - install rtl-sdr tools'); } - if (!data.available) { - warnings.push('No RTL-SDR devices found'); + if (!data.ffmpeg) { + warnings.push('ffmpeg not found - install: brew install ffmpeg (macOS) or apt install ffmpeg (Linux)'); } const warningDiv = document.getElementById('scannerToolsWarning');