mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-04-04 22:17:34 +00:00
Few fixes
This commit is contained in:
parent
d33d342a1e
commit
1e47495c52
3 changed files with 7 additions and 4 deletions
|
|
@ -2568,8 +2568,10 @@ function secondary_demod_push_data(x)
|
|||
{
|
||||
x=Array.from(x).map((y)=>{
|
||||
var c=y.charCodeAt(0);
|
||||
if(y=="\r") return " ";
|
||||
if(y=="\n") return " ";
|
||||
//if(y=="\n") return "<br />";
|
||||
if(c<32||c>126) return "";
|
||||
if(y=="\n") return "<br />";
|
||||
if(y=="&") return "&";
|
||||
if(y=="<") return "<";
|
||||
if(y==">") return ">";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue