Merge pull request #8238 from vector-im/dbkr/lt_gt_desktop_notifs

Fix literal &lt/&gt in notifications
pull/8248/head
David Baker 2019-01-23 16:14:39 +00:00 committed by GitHub
commit 9aa8b32df8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
// maybe we should pass basic styling (italics, bold, underline) through from MD
// we only have to strip out < and > as the spec doesn't include anything about things like &amp;
// so we shouldn't assume that all implementations will treat those properly. Very basic tag parsing is done.
if (navigator.userAgent.indexOf('Linux')) {
if (navigator.userAgent.includes('Linux')) {
msg = msg.replace(/</g, '&lt;').replace(/>/g, '&gt;');
}