Browse Source

fix(greader): return enclosures in `streamItemContentsHandler` response

Frédéric Guillot 1 year ago
parent
commit
381f03b56a
1 changed files with 1 additions and 0 deletions
  1. 1 0
      internal/googlereader/handler.go

+ 1 - 0
internal/googlereader/handler.go

@@ -950,6 +950,7 @@ func (h *handler) streamItemContentsHandler(w http.ResponseWriter, r *http.Reque
 	)
 
 	builder := h.store.NewEntryQueryBuilder(userID)
+	builder.WithEnclosures()
 	builder.WithoutStatus(model.EntryStatusRemoved)
 	builder.WithEntryIDs(itemIDs)
 	builder.WithSorting(model.DefaultSortingOrder, requestModifiers.SortDirection)