From 7effc8929118b9cab005d3b3c68e4e80ac52c527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Sun, 29 Sep 2019 21:44:07 -0400 Subject: [PATCH] fix: profile page meta tags getting escaped twice --- src/controllers/accounts/profile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/controllers/accounts/profile.js b/src/controllers/accounts/profile.js index 55aeb67f26..5c004e243b 100644 --- a/src/controllers/accounts/profile.js +++ b/src/controllers/accounts/profile.js @@ -99,6 +99,7 @@ function addMetaTags(res, userData) { { name: 'title', content: userData.fullname || userData.username, + noEscape: true, }, { name: 'description', @@ -107,6 +108,7 @@ function addMetaTags(res, userData) { { property: 'og:title', content: userData.fullname || userData.username, + noEscape: true, }, { property: 'og:description',