From 8f4be991a039812fc40a8ab485ae28941c6d6381 Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Wed, 22 Jul 2020 13:48:27 -0500 Subject: [PATCH] Updated status meta data title and description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Updated: - status meta data title and description to remove truncation --- app/views/stream_entries/_meta.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/stream_entries/_meta.html.haml b/app/views/stream_entries/_meta.html.haml index 9c96ca0d..17f84ab4 100644 --- a/app/views/stream_entries/_meta.html.haml +++ b/app/views/stream_entries/_meta.html.haml @@ -1,5 +1,5 @@ - content_for :page_title do - = t('statuses.title', name: display_name(account), quote: truncate(stream_entry.activity.spoiler_text.presence || stream_entry.activity.text, length: 50, omission: '…', escape: false)) + = "#{display_name(account)} on Gab" - content_for :header_tags do - if account.user&.setting_noindex @@ -11,7 +11,7 @@ = opengraph 'og:site_name', site_title = opengraph 'og:type', 'article' - = opengraph 'og:title', t('statuses.title', name: display_name(account), quote: truncate(stream_entry.activity.spoiler_text.presence || stream_entry.activity.text, length: 50, omission: '…', escape: false)) + = opengraph 'og:title', t('statuses.title', name: display_name(account), quote: stream_entry.activity.spoiler_text.presence || stream_entry.activity.text) = opengraph 'og:url', short_account_status_url(account, stream_entry.activity) = render 'stream_entries/og_description', activity: stream_entry.activity, account: account