Fix newlines-to-spaces functionality (tootsuite pr #6158)

signup-info-prompt
cwm 2018-01-09 08:52:14 -06:00
parent 8a0e4bb9a4
commit 7f4374d97d
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ const fetchRelatedRelationships = (dispatch, notifications) => {
const unescapeHTML = (html) => {
const wrapper = document.createElement('div');
html = html.replace(/<br \/>|<br>|\n/, ' ');
html = html.replace(/<br \/>|<br>|\n/g, ' ');
wrapper.innerHTML = html;
return wrapper.textContent;
};