From: Unknwon Date: Wed, 17 Dec 2014 01:47:10 +0000 (-0500) Subject: fix #751 X-Git-Tag: v0.9.99~1575 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d01f2f3c22648490aa96227762afae16bb505952;p=gitea.git fix #751 --- diff --git a/routers/user/home.go b/routers/user/home.go index 83dcb975fe..f5f6ab9422 100644 --- a/routers/user/home.go +++ b/routers/user/home.go @@ -198,6 +198,15 @@ func Profile(ctx *middleware.Context) { } feeds := make([]*models.Action, 0, len(actions)) for _, act := range actions { + if act.IsPrivate { + if !ctx.IsSigned { + continue + } + if has, _ := models.HasAccess(ctx.User.Name, act.RepoUserName+"/"+act.RepoName, + models.READABLE); !has { + continue + } + } // FIXME: cache results? u, err := models.GetUserByName(act.ActUserName) if err != nil {