mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	Fix archived unix time when archiving the label (#26681)
Small Fix :-`ArchivedUnix` column changed only change the date when it is newly archived. Co-authored-by: Giteabot <teabot@gitea.io>
This commit is contained in:
		@@ -113,10 +113,11 @@ func (l *Label) CalOpenIssues() {
 | 
			
		||||
 | 
			
		||||
// SetArchived set the label as archived
 | 
			
		||||
func (l *Label) SetArchived(isArchived bool) {
 | 
			
		||||
	if isArchived && l.ArchivedUnix.IsZero() {
 | 
			
		||||
		l.ArchivedUnix = timeutil.TimeStampNow()
 | 
			
		||||
	} else {
 | 
			
		||||
	if !isArchived {
 | 
			
		||||
		l.ArchivedUnix = timeutil.TimeStamp(0)
 | 
			
		||||
	} else if isArchived && l.ArchivedUnix.IsZero() {
 | 
			
		||||
		// Only change the date when it is newly archived.
 | 
			
		||||
		l.ArchivedUnix = timeutil.TimeStampNow()
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user