mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-25 13:44:50 +01:00
Fix the notification bug with newlines
This commit is contained in:
parent
6a2b1ba91e
commit
df626fdd43
1 changed files with 1 additions and 0 deletions
|
@ -42,6 +42,7 @@ const fetchRelatedRelationships = (dispatch, notifications) => {
|
||||||
|
|
||||||
const unescapeHTML = (html) => {
|
const unescapeHTML = (html) => {
|
||||||
const wrapper = document.createElement('div');
|
const wrapper = document.createElement('div');
|
||||||
|
html = html.replace(/<br \/>|<br>|\n/, ' ');
|
||||||
wrapper.innerHTML = html;
|
wrapper.innerHTML = html;
|
||||||
return wrapper.textContent;
|
return wrapper.textContent;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue