Merge remote-tracking branch 'origin/develop' into shigusegubu

* origin/develop:
  entity_normalizer: Escape name when parsing user
This commit is contained in:
Henry Jameson 2021-11-16 19:49:37 +02:00
commit 67efa635c5
2 changed files with 4 additions and 3 deletions

View file

@ -24,7 +24,7 @@ library.add(
const ProfileTab = {
data () {
return {
newName: this.$store.state.users.currentUser.name,
newName: this.$store.state.users.currentUser.name_unescaped,
newBio: unescape(this.$store.state.users.currentUser.description),
newLocked: this.$store.state.users.currentUser.locked,
newNoRichText: this.$store.state.users.currentUser.no_rich_text,

View file

@ -55,8 +55,9 @@ export const parseUser = (data) => {
}
output.emoji = data.emojis
output.name = data.display_name
output.name_html = escape(data.display_name)
output.name = escape(data.display_name)
output.name_html = output.name
output.name_unescaped = data.display_name
output.description = data.note
// TODO cleanup this shit, output.description is overriden with source data