Fix confirmation email being sent to old address when changing it
This commit is contained in:
		
							parent
							
								
									4839ab3998
								
							
						
					
					
						commit
						cec209dbad
					
				
					 2 changed files with 2 additions and 1 deletions
				
			
		|  | @ -22,6 +22,7 @@ const en = { | ||||||
|   "account.follows": "Follows", |   "account.follows": "Follows", | ||||||
|   "account.followers": "Followers", |   "account.followers": "Followers", | ||||||
|   "account.follows_you": "Follows you", |   "account.follows_you": "Follows you", | ||||||
|  |   "account.requested": "Awaiting approval", | ||||||
|   "getting_started.heading": "Getting started", |   "getting_started.heading": "Getting started", | ||||||
|   "getting_started.about_addressing": "You can follow people if you know their username and the domain they are on by entering an e-mail-esque address into the search form.", |   "getting_started.about_addressing": "You can follow people if you know their username and the domain they are on by entering an e-mail-esque address into the search form.", | ||||||
|   "getting_started.about_shortcuts": "If the target user is on the same domain as you, just the username will work. The same rule applies to mentioning people in statuses.", |   "getting_started.about_shortcuts": "If the target user is on the same domain as you, just the username will work. The same rule applies to mentioning people in statuses.", | ||||||
|  |  | ||||||
|  | @ -9,7 +9,7 @@ class UserMailer < Devise::Mailer | ||||||
|     @token    = token |     @token    = token | ||||||
| 
 | 
 | ||||||
|     I18n.with_locale(@resource.locale || I18n.default_locale) do |     I18n.with_locale(@resource.locale || I18n.default_locale) do | ||||||
|       mail to: @resource.email |       mail to: @resource.unconfirmed_email.blank? ? @resource.email : @resource.unconfirmed_email | ||||||
|     end |     end | ||||||
|   end |   end | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue