mirror of
https://github.com/penpot/penpot.git
synced 2025-06-03 12:21:38 +02:00
🐛 Fix parsing text spaces
This commit is contained in:
parent
23bde76192
commit
59982c9056
2 changed files with 6 additions and 5 deletions
|
@ -451,8 +451,11 @@ impl RawTextData {
|
|||
}
|
||||
|
||||
let text_utf8 = buffer[offset..text_end].to_vec();
|
||||
let text = String::from_utf8(text_utf8).expect("Invalid UTF-8 text");
|
||||
if text_utf8.is_empty() {
|
||||
return (String::new(), text_end);
|
||||
}
|
||||
|
||||
let text = String::from_utf8_lossy(&text_utf8).to_string();
|
||||
(text, text_end)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue