Fix for wrong email query
Changing EmailAdress.OwnerId to EmailAddress.Uid should have accompanied this change
This commit is contained in:
		
							parent
							
								
									030b3d751e
								
							
						
					
					
						commit
						66e2016eeb
					
				|  | @ -629,7 +629,7 @@ func GetUserIdsByNames(names []string) []int64 { | |||
| // Get all email addresses
 | ||||
| func GetEmailAddresses(uid int64) ([]*EmailAddress, error) { | ||||
| 	emails := make([]*EmailAddress, 0, 5) | ||||
| 	err := x.Where("owner_id=?", uid).Find(&emails) | ||||
| 	err := x.Where("uid=?", uid).Find(&emails) | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue