about summary refs log tree commit diff
path: root/app/views/application
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-10-08 22:08:55 +0200
committerGitHub <noreply@github.com>2019-10-08 22:08:55 +0200
commit19cdc627658166664fb1571ec45564d237e63757 (patch)
tree5ceb2c83ea31be5eb2464c08ed68a49483157f41 /app/views/application
parent4a98e77d0e7fec15e1830059a9a56bf56aa391db (diff)
Remove fallback to long description on sidebar and meta description (#12119)
Fix #12114
Diffstat (limited to 'app/views/application')
-rw-r--r--app/views/application/_sidebar.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/application/_sidebar.html.haml b/app/views/application/_sidebar.html.haml
index 33e7c96fe..7ec91c06a 100644
--- a/app/views/application/_sidebar.html.haml
+++ b/app/views/application/_sidebar.html.haml
@@ -3,7 +3,7 @@
     = image_tag @instance_presenter.hero&.file&.url || @instance_presenter.thumbnail&.file&.url || asset_pack_path('media/images/preview.jpg'), alt: @instance_presenter.site_title
 
   .hero-widget__text
-    %p= @instance_presenter.site_short_description.html_safe.presence || @instance_presenter.site_description.html_safe.presence || t('about.generic_description', domain: site_hostname)
+    %p= @instance_presenter.site_short_description.html_safe.presence || t('about.about_mastodon_html')
 
 - if Setting.trends && !(user_signed_in? && !current_user.setting_trends)
   - trends = TrendingTags.get(3)