diff --git a/internal/integration/apprise/apprise.go b/internal/integration/apprise/apprise.go index 5c9fa9d5..7d48b9eb 100644 --- a/internal/integration/apprise/apprise.go +++ b/internal/integration/apprise/apprise.go @@ -38,8 +38,9 @@ func (c *Client) SendNotification(entry *model.Entry) error { } requestBody, err := json.Marshal(map[string]any{ - "urls": c.servicesURL, - "body": message, + "urls": c.servicesURL, + "body": message, + "title": entry.Feed.Title, }) if err != nil { return fmt.Errorf("apprise: unable to encode request body: %v", err)