Fix the notification bug with newlines

master
Ondřej Hruška 7 years ago
parent 6a2b1ba91e
commit df626fdd43
No known key found for this signature in database
GPG Key ID: 2C5FD5035250423D
  1. 1
      app/javascript/mastodon/actions/notifications.js

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

Loading…
Cancel
Save