mirror of
https://github.com/pushbits/server.git
synced 2025-06-02 10:42:08 +02:00
Revert "Use bold font for titles of notifications"
This reverts commit 1ef7440336
.
Markdown syntax seems to be Riot-specific.
This commit is contained in:
parent
1ef7440336
commit
8af456df35
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ import (
|
|||
func (d *Dispatcher) SendNotification(a *model.Application, n *model.Notification) error {
|
||||
log.Printf("Sending notification to room %s.\n", a.MatrixID)
|
||||
|
||||
text := fmt.Sprintf("**%s**\n\n%s", n.Title, n.Message)
|
||||
text := fmt.Sprintf("%s\n\n%s", n.Title, n.Message)
|
||||
|
||||
_, err := d.client.SendText(a.MatrixID, text)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue