mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-29 04:22:24 -05:00 
			
		
		
		
	fix: fix slice init length (#3382)
This commit is contained in:
		
					parent
					
						
							
								3f7dc10449
							
						
					
				
			
			
				commit
				
					
						23b6d2cc64
					
				
			
		
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -618,7 +618,7 @@ func NewTestAccounts() map[string]*gtsmodel.Account { | |||
| 	} | ||||
| 
 | ||||
| 	if diff := len(accountsSorted) - len(preserializedKeys); diff > 0 { | ||||
| 		keyStrings := make([]string, diff) | ||||
| 		keyStrings := make([]string, 0, diff) | ||||
| 		for i := 0; i < diff; i++ { | ||||
| 			priv, _ := rsa.GenerateKey(rand.Reader, 2048) | ||||
| 			key, _ := x509.MarshalPKCS8PrivateKey(priv) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue