Ident should not be escaped for InfoStructure impl ()

This commit is contained in:
Micha de Vries 2024-07-02 09:39:11 +02:00 committed by GitHub
parent 08611ac00c
commit 735994549a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -62,6 +62,6 @@ impl Display for Ident {
impl InfoStructure for Ident {
fn structure(self) -> Value {
self.to_string().into()
self.to_raw().into()
}
}