mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	Co-authored-by: techknowlogick <techknowlogick@gitea.io>
(cherry picked from commit 2b2b3e4c37)
			
			
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							87a82138c6
						
					
				
				
					commit
					56660c3fd0
				
			@@ -38,7 +38,10 @@ func (opts ListOptions) setEnginePagination(e Engine) Engine {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (opts ListOptions) setDefaultValues() {
 | 
					func (opts ListOptions) setDefaultValues() {
 | 
				
			||||||
	if opts.PageSize <= 0 || opts.PageSize > setting.API.MaxResponseItems {
 | 
						if opts.PageSize <= 0 {
 | 
				
			||||||
 | 
							opts.PageSize = setting.API.DefaultPagingNum
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						if opts.PageSize > setting.API.MaxResponseItems {
 | 
				
			||||||
		opts.PageSize = setting.API.MaxResponseItems
 | 
							opts.PageSize = setting.API.MaxResponseItems
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if opts.Page <= 0 {
 | 
						if opts.Page <= 0 {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user