mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-05-31 23:10:44 +00:00
parent
61d794b680
commit
2919fb79e5
@ -1,4 +1,4 @@
|
|||||||
use handlebars::{no_escape, Handlebars};
|
use handlebars::Handlebars;
|
||||||
|
|
||||||
use super::super::config;
|
use super::super::config;
|
||||||
|
|
||||||
@ -992,7 +992,7 @@ r#"
|
|||||||
"#].join("\n");
|
"#].join("\n");
|
||||||
|
|
||||||
let mut reg = Handlebars::new();
|
let mut reg = Handlebars::new();
|
||||||
reg.register_escape_fn(no_escape);
|
reg.register_escape_fn(|s| s.to_string().replace('"', r#"\""#));
|
||||||
let conf = config::get();
|
let conf = config::get();
|
||||||
println!(
|
println!(
|
||||||
"{}",
|
"{}",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user