1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 15:16:33 +09:00

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

This commit is contained in:
Ondřej Hruška 2017-10-14 14:41:12 +02:00 committed by Eugen Rochko
parent f63a40e7c2
commit ae716a12e1

View File

@ -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;
};