From 31ba79e74c871c4a7e4d313ddcd22d5dada4a6ac Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Fri, 2 Jan 2026 22:07:50 +0100 Subject: [PATCH] script: make rtp non-running text consistnet with normal --- examples/test.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/test.lua b/examples/test.lua index 5a539de..7c4ff67 100644 --- a/examples/test.lua +++ b/examples/test.lua @@ -546,7 +546,7 @@ local function render_menu() if rtp_running then out = out .. string.format("%s - %s\r\n\t", rtp_types[rtp_type1+1], current_rt:sub(rtp_start1+1, rtp_start1+rtp_len1+1)) out = out .. string.format("%s - %s\r\n\t", rtp_types[rtp_type2+1], current_rt:sub(rtp_start2+1, rtp_start2+rtp_len2+1)) - else out = out .. "-\r\n-\t\r\n" end + else out = out .. "-\r\n\t-\r\n\t" end out = out .. string.format("RAW %d,%d,%d,%d,%d,%d\r\n", rtp_type1, rtp_start1, rtp_len1, rtp_type2, rtp_start2, rtp_len2) elseif current_menu == 3 then local pi_code = tonumber(db.read_value("PI") or "0000", 16)