Browse Source

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

closed-social-glitch-2
cwm 6 years ago
parent
commit
7f4374d97d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/flavours/glitch/actions/notifications.js

+ 1
- 1
app/javascript/flavours/glitch/actions/notifications.js 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;
};

Loading…
Cancel
Save