mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-03 05:24:29 +00:00
Fix the notification bug with newlines
This commit is contained in:
parent
6a2b1ba91e
commit
df626fdd43
|
@ -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…
Reference in a new issue