diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-09-03 04:56:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-03 04:56:54 +0200 |
commit | 3221f998dd1fcfc2111178637fbb1f712d9e8388 (patch) | |
tree | 95cc5987b51464187859ce3802ca874770c1db0d /app/views/shared | |
parent | 34adc8784a3f165a4bd5719a067093f703f499e9 (diff) |
Change OpenGraph description on sign-up page to reflect invite (#11744)
Diffstat (limited to 'app/views/shared')
-rw-r--r-- | app/views/shared/_og.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/shared/_og.html.haml b/app/views/shared/_og.html.haml index 67238fc8b..576f47a67 100644 --- a/app/views/shared/_og.html.haml +++ b/app/views/shared/_og.html.haml @@ -1,5 +1,5 @@ -- thumbnail = @instance_presenter.thumbnail -- description = strip_tags(@instance_presenter.site_short_description.presence || @instance_presenter.site_description.presence || t('about.about_mastodon_html')) +- thumbnail = @instance_presenter.thumbnail +- description ||= strip_tags(@instance_presenter.site_short_description.presence || @instance_presenter.site_description.presence || t('about.about_mastodon_html')) %meta{ name: 'description', content: description }/ |