From 8a5f85b0ee5e76de384b0388d3fa5c9d0941a9c1 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 30 Nov 2020 10:14:58 +0000 Subject: [PATCH] More verbose --- webapp_search.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/webapp_search.py b/webapp_search.py index 146d98e84..1c1277ecb 100644 --- a/webapp_search.py +++ b/webapp_search.py @@ -710,7 +710,11 @@ def htmlHashtagSearch(cssCache: {}, if nickname: showIndividualPostIcons = True allowDeletion = False - showRepeats = True + showRepeats = showIndividualPostIcons + showIcons = showIndividualPostIcons + manuallyApprovesFollowers = False + showPublicOnly = False + storeToCache = False postStr = \ individualPostAsHtml(True, recentPostsCache, maxRecentPosts, @@ -724,9 +728,10 @@ def htmlHashtagSearch(cssCache: {}, 'search', YTReplacementDomain, showPublishedDateOnly, - showRepeats, - showIndividualPostIcons, - False, False, False) + showRepeats, showIcons, + manuallyApprovesFollowers, + showPublicOnly, + storeToCache) if postStr: hashtagSearchForm += separatorStr + postStr index += 1