diff options
author | Jonas Franz <info@jonasfranz.software> | 2017-06-25 20:20:29 +0200 |
---|---|---|
committer | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2017-06-25 20:20:29 +0200 |
commit | 441986a473a666e0a6a34ec49c50b5aa19245cf8 (patch) | |
tree | 67d45e4b2268a896649ef093cdd0b01ffed5aa1e /routers/user/profile.go | |
parent | 735676267e48e6a57b250825e2e77edbb513e11d (diff) | |
download | gitea-441986a473a666e0a6a34ec49c50b5aa19245cf8.tar.gz gitea-441986a473a666e0a6a34ec49c50b5aa19245cf8.zip |
Fix "Dashboard shows deleted comments" (#1995)
Diffstat (limited to 'routers/user/profile.go')
-rw-r--r-- | routers/user/profile.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/user/profile.go b/routers/user/profile.go index 1768cec7b1..c7d761052e 100644 --- a/routers/user/profile.go +++ b/routers/user/profile.go @@ -138,7 +138,7 @@ func Profile(ctx *context.Context) { ctx.Data["Keyword"] = keyword switch tab { case "activity": - retrieveFeeds(ctx, ctxUser, showPrivate, true) + retrieveFeeds(ctx, ctxUser, showPrivate, true, false) if ctx.Written() { return } |