diff options
author | Unknwon <u@gogs.io> | 2016-02-14 20:07:42 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-02-14 20:07:42 -0500 |
commit | a1d97e8f5c13d4380abe761ed64d0ab59b779167 (patch) | |
tree | a3f542336e3856df14e4036efec69215e9300825 /models/action.go | |
parent | daa43cfb6e6ed4118676e55d47d8816bab2379e5 (diff) | |
download | gitea-a1d97e8f5c13d4380abe761ed64d0ab59b779167.tar.gz gitea-a1d97e8f5c13d4380abe761ed64d0ab59b779167.zip |
Minor fix for #2567
Diffstat (limited to 'models/action.go')
-rw-r--r-- | models/action.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/models/action.go b/models/action.go index 5a38da87c0..8d7dd6fa3d 100644 --- a/models/action.go +++ b/models/action.go @@ -593,21 +593,21 @@ func MergePullRequestAction(actUser *User, repo *Repository, pull *Issue) error } // GetFeeds returns action list of given user in given context. -// ctxUserID is the user who's requesting, userID is the user/org that is requested. -// ctxUserID can be -1, if isProfile is true or in order to skip the permission check. +// userID is the user who's requesting, ctxUserID is the user/org that is requested. +// userID can be -1, if isProfile is true or in order to skip the permission check. func GetFeeds(ctxUserID, userID, offset int64, isProfile bool) ([]*Action, error) { actions := make([]*Action, 0, 20) - sess := x.Limit(20, int(offset)).Desc("id").Where("user_id=?", userID) + sess := x.Limit(20, int(offset)).Desc("id").Where("user_id=?", ctxUserID) if isProfile { - sess.And("is_private=?", false).And("act_user_id=?", userID) + sess.And("is_private=?", false).And("act_user_id=?", ctxUserID) } else if ctxUserID != -1 { - ctxUser := &User{Id: userID} - if err := ctxUser.GetUserRepositories(ctxUserID); err != nil { + ctxUser := &User{Id: ctxUserID} + if err := ctxUser.GetUserRepositories(userID); err != nil { return nil, err } var repoIDs []int64 - for _, repo := range ctxUser.Repos { + for _, repo := range ctxUser.Repos { repoIDs = append(repoIDs, repo.ID) } |