mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Fix unstable emoji sort (#22346)
Without the second sort every generate run produces a different result.
This commit is contained in:
		| @@ -189,6 +189,10 @@ func generate() ([]byte, error) { | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	sort.Slice(data, func(i, j int) bool { | ||||
| 		return data[i].Aliases[0] < data[j].Aliases[0] | ||||
| 	}) | ||||
|  | ||||
| 	// add header | ||||
| 	str := replacer.Replace(fmt.Sprintf(hdr, gemojiURL, data)) | ||||
|  | ||||
|   | ||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
		Reference in New Issue
	
	Block a user