mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 22:28:05 +01:00 
			
		
		
		
	Fix SetExpr failed (#9506)
This commit is contained in:
		
							parent
							
								
									2401779aac
								
							
						
					
					
						commit
						3d5f31f77d
					
				| @ -103,10 +103,10 @@ func pushUpdateDeleteTags(e Engine, repo *Repository, tags []string) error { | ||||
| 	if _, err := e. | ||||
| 		Where("repo_id = ? AND is_tag = ?", repo.ID, false). | ||||
| 		In("lower_tag_name", lowerTags). | ||||
| 		SetExpr("is_draft", true). | ||||
| 		SetExpr("num_commits", 0). | ||||
| 		SetExpr("sha1", ""). | ||||
| 		Update(new(Release)); err != nil { | ||||
| 		Cols("is_draft", "num_commits", "sha1"). | ||||
| 		Update(&Release{ | ||||
| 			IsDraft: true, | ||||
| 		}); err != nil { | ||||
| 		return fmt.Errorf("Update: %v", err) | ||||
| 	} | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user