diff options
author | Tulir Asokan <tulir@maunium.net> | 2019-05-12 17:34:47 +0300 |
---|---|---|
committer | Tulir Asokan <tulir@maunium.net> | 2019-05-12 17:34:47 +0300 |
commit | 4bcdcd1ccd1d616d29614e5eaf8bfb1df679aa6d (patch) | |
tree | 0b8eb608ea4d592ea2a1ab06ba77254e75dd0148 /ui/messages/html | |
parent | bedbc3d10a87146bba4cc37c356068ef8849a496 (diff) |
Fix go 1.11 and go get compatibility
Diffstat (limited to 'ui/messages/html')
-rw-r--r-- | ui/messages/html/parser.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/messages/html/parser.go b/ui/messages/html/parser.go index bc93e9d..a0757c4 100644 --- a/ui/messages/html/parser.go +++ b/ui/messages/html/parser.go @@ -323,7 +323,7 @@ func (parser *htmlParser) singleNodeToEntity(node *html.Node) Entity { switch node.Type { case html.TextNode: if !parser.keepLinebreak { - node.Data = strings.ReplaceAll(node.Data, "\n", "") + node.Data = strings.Replace(node.Data, "\n", "", -1) } if len(node.Data) == 0 { return nil @@ -385,7 +385,7 @@ const TabLength = 4 func Parse(room *rooms.Room, evt *mautrix.Event, senderDisplayname string) Entity { htmlData := evt.Content.FormattedBody if evt.Content.Format != mautrix.FormatHTML { - htmlData = strings.ReplaceAll(html.EscapeString(evt.Content.Body), "\n", "<br/>") + htmlData = strings.Replace(html.EscapeString(evt.Content.Body), "\n", "<br/>", -1) } htmlData = strings.Replace(htmlData, "\t", strings.Repeat(" ", TabLength), -1) |