commit: 1c5b0e333464d8da3de73e4886502c816cb8173e
parent: 740f8a95a905e949b6a74bc69dcaf638d2d46248
Author: Yamagishi Kazutoshi <ykzts@desire.sh>
Date: Tue, 28 Nov 2017 00:09:52 +0900
Use account.username when display_name is empty (#5828)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/views/stream_entries/show.html.haml b/app/views/stream_entries/show.html.haml
@@ -8,7 +8,7 @@
= opengraph 'og:site_name', site_title
= opengraph 'og:type', 'article'
- = opengraph 'og:title', "#{@account.display_name} on #{site_hostname}"
+ = opengraph 'og:title', "#{@account.display_name.presence || @account.username} on #{site_hostname}"
= opengraph 'og:url', account_stream_entry_url(@account, @stream_entry)
= render 'stream_entries/og_description', activity: @stream_entry.activity