Browse Source

Fix newlines-to-spaces functionality (#6158)

yay for regexes, amirite
pull/4/head
Noiob 6 years ago
committed by Eugen Rochko
parent
commit
94230fe565
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/actions/notifications.js

+ 1
- 1
app/javascript/mastodon/actions/notifications.js View File

@ -31,7 +31,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