[Glitch] Handle Surrogate Pairs in truncate()

Port 5c744a5d7d to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
lolsob-rspec
y.takahashi 2023-05-29 18:55:16 +09:00 committed by Claire
parent bda5be1406
commit e7cb0dc83b
1 changed files with 3 additions and 2 deletions

View File

@ -161,8 +161,9 @@ const makeMapStateToProps = () => {
};
const truncate = (str, num) => {
if (str.length > num) {
return str.slice(0, num) + '…';
const arr = Array.from(str);
if (arr.length > num) {
return arr.slice(0, num).join('') + '…';
} else {
return str;
}