Backport of #21504 Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
		
							parent
							
								
									169c08e20a
								
							
						
					
					
						commit
						2ccf940464
					
				| @ -613,7 +613,9 @@ func handleUserCreated(ctx *context.Context, u *user_model.User, gothUser *goth. | |||||||
| 	// update external user information
 | 	// update external user information
 | ||||||
| 	if gothUser != nil { | 	if gothUser != nil { | ||||||
| 		if err := externalaccount.UpdateExternalUser(u, *gothUser); err != nil { | 		if err := externalaccount.UpdateExternalUser(u, *gothUser); err != nil { | ||||||
| 			log.Error("UpdateExternalUser failed: %v", err) | 			if !user_model.IsErrExternalLoginUserNotExist(err) { | ||||||
|  | 				log.Error("UpdateExternalUser failed: %v", err) | ||||||
|  | 			} | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -1061,7 +1061,9 @@ func handleOAuth2SignIn(ctx *context.Context, source *auth.Source, u *user_model | |||||||
| 
 | 
 | ||||||
| 		// update external user information
 | 		// update external user information
 | ||||||
| 		if err := externalaccount.UpdateExternalUser(u, gothUser); err != nil { | 		if err := externalaccount.UpdateExternalUser(u, gothUser); err != nil { | ||||||
| 			log.Error("UpdateExternalUser failed: %v", err) | 			if !user_model.IsErrExternalLoginUserNotExist(err) { | ||||||
|  | 				log.Error("UpdateExternalUser failed: %v", err) | ||||||
|  | 			} | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		if err := resetLocale(ctx, u); err != nil { | 		if err := resetLocale(ctx, u); err != nil { | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user