replace newlines in desktop notif with spaces instead of removing them (#5361)

master
Ondřej Hruška 7 years ago committed by Eugen Rochko
parent f63a40e7c2
commit ae716a12e1
  1. 1
      app/javascript/mastodon/actions/notifications.js

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