Skip to content

Commit

Permalink
fix: replace newline from message with br to display newlines correctly
Browse files Browse the repository at this point in the history
Fix #15291
  • Loading branch information
endulab committed Jul 11, 2024
1 parent f90ef86 commit 357a97a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions bridge/status/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,10 @@ func (b *Bstatus) propagateMessage(msg *common.Message) {
}
}

func (b *Bstatus) nl2br(input string) string {
return strings.Replace(input, "\n", "<br/>", -1)
}

// Converts a bridge message into a Status message
func (b *Bstatus) toStatusMsg(msg config.Message) *common.Message {
message := common.NewMessage()
Expand Down Expand Up @@ -283,6 +287,8 @@ func (b *Bstatus) Send(msg config.Message) (string, error) {
return "", fmt.Errorf("bridge %s not connected, dropping message %#v to bridge", b.Account, msg)
}

msg.Text = b.nl2br(msg.Text)

b.Log.Debugf("=> Sending message %#v", msg)

statusMessageToSend := b.toStatusMsg(msg)
Expand Down

0 comments on commit 357a97a

Please sign in to comment.