diff options
author | abcang <abcang1015@gmail.com> | 2017-06-17 05:38:26 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-06-16 22:38:26 +0200 |
commit | 1840a352f5cdf676284c1d8d32bef7776fbb536d (patch) | |
tree | 334ab3c23a2b2e68a4186c24d9ea109d2e7185d2 /app/views/about | |
parent | c93d0978f21fbbd51e94a4823ffe876fa4511c42 (diff) |
Fix ogp url (#3802)
Diffstat (limited to 'app/views/about')
-rw-r--r-- | app/views/about/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/about/show.html.haml b/app/views/about/show.html.haml index fd21c2a7f..d15b04163 100644 --- a/app/views/about/show.html.haml +++ b/app/views/about/show.html.haml @@ -10,7 +10,7 @@ %meta{ property: 'og:type', content: 'website' }/ %meta{ property: 'og:title', content: site_hostname }/ %meta{ property: 'og:description', content: strip_tags(@instance_presenter.site_description.presence || t('about.about_mastodon')) }/ - %meta{ property: 'og:image', content: asset_pack_path('mastodon_small.jpg') }/ + %meta{ property: 'og:image', content: asset_pack_path('mastodon_small.jpg', protocol: :request) }/ %meta{ property: 'og:image:width', content: '400' }/ %meta{ property: 'og:image:height', content: '400' }/ %meta{ property: 'twitter:card', content: 'summary' }/ |