mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 14:07:39 +03:00
Escape text-only flairs
This commit is contained in:
parent
be253d40dd
commit
45a5778571
3 changed files with 4 additions and 4 deletions
|
@ -39,7 +39,7 @@ impl FlairPart {
|
|||
Self {
|
||||
flair_part_type: value("e").to_string(),
|
||||
value: match value("e") {
|
||||
"text" => esc!(value("t")).to_string(),
|
||||
"text" => esc!(value("t")),
|
||||
"emoji" => format_url(value("u")),
|
||||
_ => String::new(),
|
||||
},
|
||||
|
@ -52,7 +52,7 @@ impl FlairPart {
|
|||
"text" => match text_flair {
|
||||
Some(text) => vec![Self {
|
||||
flair_part_type: "text".to_string(),
|
||||
value: text.to_string(),
|
||||
value: esc!(text),
|
||||
}],
|
||||
None => Vec::new(),
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue