From acc280fbbdee818c94b12cc4382266dbb734e8b5 Mon Sep 17 00:00:00 2001 From: siddharth Date: Sun, 28 Nov 2021 21:51:09 -0500 Subject: state: add EntryResult.EntryTitle --- state/state.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/state/state.go b/state/state.go index 109e4d1..4bfbf39 100644 --- a/state/state.go +++ b/state/state.go @@ -12,8 +12,9 @@ type FeedResult struct { // Contains the result of processing an Entry. type EntryResult struct { - EntryId string // Entry's identifier - Err error // Set on error + EntryId string // Entry's identifier + EntryTitle string // Entry's title + Err error // Set on error } type ProcessState struct { -- cgit v1.2.3