mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	FIX Pagination of ListAccessTokens and GetIssueWatchers (#10449)
* fix a pagination bug * fix pagination of ListAccessTokens
This commit is contained in:
		@@ -81,7 +81,7 @@ func GetIssueWatchers(issueID int64, listOptions ListOptions) (IssueWatchList, e
 | 
			
		||||
	return getIssueWatchers(x, issueID, listOptions)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func getIssueWatchers(e Engine, issueID int64, listOptions ListOptions) (watches IssueWatchList, err error) {
 | 
			
		||||
func getIssueWatchers(e Engine, issueID int64, listOptions ListOptions) (IssueWatchList, error) {
 | 
			
		||||
	sess := e.
 | 
			
		||||
		Where("`issue_watch`.issue_id = ?", issueID).
 | 
			
		||||
		And("`issue_watch`.is_watching = ?", true).
 | 
			
		||||
@@ -89,11 +89,13 @@ func getIssueWatchers(e Engine, issueID int64, listOptions ListOptions) (watches
 | 
			
		||||
		And("`user`.prohibit_login = ?", false).
 | 
			
		||||
		Join("INNER", "`user`", "`user`.id = `issue_watch`.user_id")
 | 
			
		||||
 | 
			
		||||
	if listOptions.Page == 0 {
 | 
			
		||||
	if listOptions.Page != 0 {
 | 
			
		||||
		sess = listOptions.setSessionPagination(sess)
 | 
			
		||||
		watches := make([]*IssueWatch, 0, listOptions.PageSize)
 | 
			
		||||
		return watches, sess.Find(&watches)
 | 
			
		||||
	}
 | 
			
		||||
	err = sess.Find(&watches)
 | 
			
		||||
	return
 | 
			
		||||
	watches := make([]*IssueWatch, 0, 8)
 | 
			
		||||
	return watches, sess.Find(&watches)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func removeIssueWatchersByRepoID(e Engine, userID int64, repoID int64) error {
 | 
			
		||||
 
 | 
			
		||||
@@ -83,7 +83,7 @@ func ListAccessTokens(uid int64, listOptions ListOptions) ([]*AccessToken, error
 | 
			
		||||
		Where("uid=?", uid).
 | 
			
		||||
		Desc("id")
 | 
			
		||||
 | 
			
		||||
	if listOptions.Page == 0 {
 | 
			
		||||
	if listOptions.Page != 0 {
 | 
			
		||||
		sess = listOptions.setSessionPagination(sess)
 | 
			
		||||
 | 
			
		||||
		tokens := make([]*AccessToken, 0, listOptions.PageSize)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user