mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 00:20:25 +08:00 
			
		
		
		
	Fix typos related to ErrTaskDoesNotExist error (#20118)
Fixes: f2a3abc683 ("Move migrating repository from frontend to backend (#6200)")
			
			
This commit is contained in:
		@@ -156,14 +156,14 @@ type ErrTaskDoesNotExist struct {
 | 
			
		||||
	Type   structs.TaskType
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IsErrTaskDoesNotExist checks if an error is a ErrTaskIsNotExist.
 | 
			
		||||
// IsErrTaskDoesNotExist checks if an error is a ErrTaskDoesNotExist.
 | 
			
		||||
func IsErrTaskDoesNotExist(err error) bool {
 | 
			
		||||
	_, ok := err.(ErrTaskDoesNotExist)
 | 
			
		||||
	return ok
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (err ErrTaskDoesNotExist) Error() string {
 | 
			
		||||
	return fmt.Sprintf("task is not exist [id: %d, repo_id: %d, type: %d]",
 | 
			
		||||
	return fmt.Sprintf("task does not exist [id: %d, repo_id: %d, type: %d]",
 | 
			
		||||
		err.ID, err.RepoID, err.Type)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user