mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Fix incorrect user location link on profile page (#29474)
Fix #29472. Regression of #29236, a "if" check was missing.
This commit is contained in:
		| @@ -35,8 +35,9 @@ func PrepareContextForProfileBigAvatar(ctx *context.Context) { | ||||
| 	prepareContextForCommonProfile(ctx) | ||||
|  | ||||
| 	ctx.Data["ShowUserEmail"] = setting.UI.ShowUserEmail && ctx.ContextUser.Email != "" && ctx.IsSigned && !ctx.ContextUser.KeepEmailPrivate | ||||
| 	ctx.Data["ContextUserLocationMapURL"] = setting.Service.UserLocationMapURL + url.QueryEscape(ctx.ContextUser.Location) | ||||
|  | ||||
| 	if setting.Service.UserLocationMapURL != "" { | ||||
| 		ctx.Data["ContextUserLocationMapURL"] = setting.Service.UserLocationMapURL + url.QueryEscape(ctx.ContextUser.Location) | ||||
| 	} | ||||
| 	// Show OpenID URIs | ||||
| 	openIDs, err := user_model.GetUserOpenIDs(ctx, ctx.ContextUser.ID) | ||||
| 	if err != nil { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user