Skip to content

Commit

Permalink
user/{userID}/state/com.google/read is missing in categories sect…
Browse files Browse the repository at this point in the history
…ion for read entries
  • Loading branch information
fguillot committed Nov 9, 2023
1 parent 6544e41 commit 1bd5d57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/googlereader/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ func (h *handler) streamItemContentsHandler(w http.ResponseWriter, r *http.Reque
if entry.Feed.Category.Title != "" {
categories = append(categories, fmt.Sprintf(UserLabelPrefix, userID)+entry.Feed.Category.Title)
}
if entry.Starred {
if entry.Status == model.EntryStatusRead {
categories = append(categories, userRead)
}

Expand Down

0 comments on commit 1bd5d57

Please sign in to comment.