mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08:21:11 +00:00 
			
		
		
		
	
					parent
					
						
							
								7e733ee904
							
						
					
				
			
			
				commit
				
					
						f6db650e9d
					
				
			
		
					 1 changed files with 8 additions and 1 deletions
				
			
		| 
						 | 
					@ -98,7 +98,14 @@ func releasesOrTags(ctx *context.Context, isTagList bool) {
 | 
				
			||||||
		listOptions.PageSize = setting.API.MaxResponseItems
 | 
							listOptions.PageSize = setting.API.MaxResponseItems
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	tags, err := ctx.Repo.GitRepo.GetTags(listOptions.GetStartEnd())
 | 
						// TODO(20073) tags are used for compare feature witch needs all tags
 | 
				
			||||||
 | 
						// filtering is doen at the client side atm
 | 
				
			||||||
 | 
						tagListStart, tagListEnd := 0, 0
 | 
				
			||||||
 | 
						if isTagList {
 | 
				
			||||||
 | 
							tagListStart, tagListEnd = listOptions.GetStartEnd()
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						tags, err := ctx.Repo.GitRepo.GetTags(tagListStart, tagListEnd)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		ctx.ServerError("GetTags", err)
 | 
							ctx.ServerError("GetTags", err)
 | 
				
			||||||
		return
 | 
							return
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue