mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Fix consistency check (#15120)
In my last fix I missed adding the label_ prefix to the consistency check count. Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
		| @@ -368,7 +368,7 @@ func FixCommentTypeLabelWithOutsideLabels() (int64, error) { | |||||||
| func CountIssueLabelWithOutsideLabels() (int64, error) { | func CountIssueLabelWithOutsideLabels() (int64, error) { | ||||||
| 	return x.Where(builder.Expr("issue.repo_id != label.repo_id OR (label.repo_id = 0 AND repository.owner_id != label.org_id)")). | 	return x.Where(builder.Expr("issue.repo_id != label.repo_id OR (label.repo_id = 0 AND repository.owner_id != label.org_id)")). | ||||||
| 		Table("issue_label"). | 		Table("issue_label"). | ||||||
| 		Join("inner", "label", "issue_label.id = label.id "). | 		Join("inner", "label", "issue_label.label_id = label.id "). | ||||||
| 		Join("inner", "issue", "issue.id = issue_label.issue_id "). | 		Join("inner", "issue", "issue.id = issue_label.issue_id "). | ||||||
| 		Join("inner", "repository", "issue.repo_id = repository.id"). | 		Join("inner", "repository", "issue.repo_id = repository.id"). | ||||||
| 		Count(new(IssueLabel)) | 		Count(new(IssueLabel)) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user