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