diff --git a/js/misc-functions.js b/js/misc-functions.js index 5600f9b..250a5ca 100644 --- a/js/misc-functions.js +++ b/js/misc-functions.js @@ -1175,6 +1175,7 @@ function iterateRecursiveReplaceHtmlSpecialChars(obj) { } else if(typeof obj[property] == 'string' && property != 'statusnet_html' + && property != 'oembedHTML' // we trust this to be cleaned server side && property != 'source') { obj[property] = replaceHtmlSpecialChars(obj[property]); }