diff options
author | 2017-11-21 17:40:29 -0800 | |
---|---|---|
committer | 2017-11-21 17:40:29 -0800 | |
commit | 4fc18647ca73fed5cc3357eb0b50bcff8263f171 (patch) | |
tree | 2a9d0a5636bdbf43ceef86287bee323950e14412 /server/ui/controller/unread.go | |
parent | e52f0b9cd29b1e0bfb8f45bc4ef8507dc7a721f8 (diff) | |
download | v2-4fc18647ca73fed5cc3357eb0b50bcff8263f171.tar.gz v2-4fc18647ca73fed5cc3357eb0b50bcff8263f171.tar.zst v2-4fc18647ca73fed5cc3357eb0b50bcff8263f171.zip |
Make sure that items marked as removed are not shown
Diffstat (limited to 'server/ui/controller/unread.go')
-rw-r--r-- | server/ui/controller/unread.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/ui/controller/unread.go b/server/ui/controller/unread.go index 63d7db02..16728e85 100644 --- a/server/ui/controller/unread.go +++ b/server/ui/controller/unread.go @@ -9,6 +9,7 @@ import ( "github.com/miniflux/miniflux2/server/core" ) +// ShowUnreadPage render the page with all unread entries. func (c *Controller) ShowUnreadPage(ctx *core.Context, request *core.Request, response *core.Response) { user := ctx.GetLoggedUser() offset := request.GetQueryIntegerParam("offset", 0) |