1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-06-27 16:36:00 +00:00

Send full article content to wallabag

This commit is contained in:
Gabriel Augendre 2021-02-21 08:34:07 +01:00 committed by fguillot
parent bbf93430b7
commit e5b2eab727
2 changed files with 6 additions and 5 deletions

View file

@ -47,7 +47,7 @@ func SendEntry(entry *model.Entry, integration *model.Integration) {
integration.WallabagPassword,
)
if err := client.AddEntry(entry.URL, entry.Title); err != nil {
if err := client.AddEntry(entry.URL, entry.Title, entry.Content); err != nil {
logger.Error("[Integration] UserID #%d: %v", integration.UserID, err)
}
}