From 64a4e4de0a83bc97e5c6a39d2a56b485c4482a1f Mon Sep 17 00:00:00 2001 From: noellabo Date: Mon, 4 Jan 2021 13:39:11 +0900 Subject: [PATCH] Fix not hiding quoted unlisted status in non public timeline --- app/javascript/mastodon/components/status.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/mastodon/components/status.js b/app/javascript/mastodon/components/status.js index 17f0de99f..a08bb291a 100644 --- a/app/javascript/mastodon/components/status.js +++ b/app/javascript/mastodon/components/status.js @@ -618,7 +618,7 @@ class Status extends ImmutablePureComponent { ); - } else if (quote_status.get('visibility') === 'unlisted' && contextType !== 'home') { + } else if (quote_status.get('visibility') === 'unlisted' && !!contextType && ['public', 'community', 'hashtag'].includes(contextType.split(':', 2)[0])) { quote = (