More verbose

merge-requests/8/head
Bob Mottram 2020-11-30 10:14:58 +00:00
parent 43e0610639
commit 8a5f85b0ee
1 changed files with 9 additions and 4 deletions

View File

@ -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