fix: #13239, unescape custom user field values

This commit is contained in:
Julian Lam
2026-03-04 11:53:29 -05:00
parent 4f07b345bf
commit 2f5fccdb1a

View File

@@ -453,7 +453,7 @@ Mocks.actors.user = async (uid) => {
attachment.push({
type: 'Link',
name,
href: value,
href: validator.unescape(value),
});
} else {
attachment.push({
@@ -467,7 +467,7 @@ Mocks.actors.user = async (uid) => {
attachment.push({
type: 'PropertyValue',
name,
value,
value: validator.unescape(value),
});
}
});