Escape text-only flairs

This commit is contained in:
spikecodes 2021-07-19 10:20:00 -07:00
parent be253d40dd
commit 45a5778571
No known key found for this signature in database
GPG key ID: 004CECFF9B463BCB
3 changed files with 4 additions and 4 deletions

View file

@ -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(),
},