From: Ondřej Hruška Date: Thu, 12 Oct 2017 19:28:17 +0000 (+0200) Subject: Fix the notification bug with newlines X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=df626fdd43330e81d5df2f7f43b896757c51ad11;p=mastodon.git Fix the notification bug with newlines --- diff --git a/app/javascript/mastodon/actions/notifications.js b/app/javascript/mastodon/actions/notifications.js index ebdf21322..4a4462e1d 100644 --- a/app/javascript/mastodon/actions/notifications.js +++ b/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(/
|
|\n/, ' '); wrapper.innerHTML = html; return wrapper.textContent; };