From fe040a42f0c6da84c004ad8e3f769f65176cba56 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Wed, 31 Oct 2018 10:04:21 +0900 Subject: [PATCH] Updated Open Graph for users --- pages/profile/profile.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/profile/profile.go b/pages/profile/profile.go index 4bf6cc54..224766dd 100644 --- a/pages/profile/profile.go +++ b/pages/profile/profile.go @@ -36,12 +36,12 @@ func Profile(ctx *aero.Context, viewUser *arn.User) string { "og:image": viewUser.AvatarLink("large"), "og:url": "https://" + ctx.App.Config.Domain + viewUser.Link(), "og:site_name": "notify.moe", - "og:description": viewUser.Tagline, + "og:description": viewUser.Introduction, "og:type": "profile", "profile:username": viewUser.Nick, }, Meta: map[string]string{ - "description": viewUser.Tagline, + "description": viewUser.Introduction, "keywords": viewUser.Nick + ",profile", }, }