mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	[Fix] milestone close timestamp (#8728)
* BugFix: Update closed_date_unix colum on milestone table on close * go fmt
This commit is contained in:
		| @@ -306,7 +306,11 @@ func ChangeMilestoneStatus(m *Milestone, isClosed bool) (err error) { | ||||
| 	} | ||||
|  | ||||
| 	m.IsClosed = isClosed | ||||
| 	if _, err := sess.ID(m.ID).Cols("is_closed").Update(m); err != nil { | ||||
| 	if isClosed { | ||||
| 		m.ClosedDateUnix = timeutil.TimeStampNow() | ||||
| 	} | ||||
|  | ||||
| 	if _, err := sess.ID(m.ID).Cols("is_closed", "closed_date_unix").Update(m); err != nil { | ||||
| 		return err | ||||
| 	} | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user