Check authorization when showing rss icon at bottom of mobile screen

main
Bob Mottram 2020-11-01 10:11:39 +00:00
parent 745d11d856
commit 468df16a85
1 changed files with 1 additions and 1 deletions

View File

@ -5897,7 +5897,7 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str,
htmlStr += newswireContentStr htmlStr += newswireContentStr
# show the rss icon at the bottom, typically on the right hand side # show the rss icon at the bottom, typically on the right hand side
rssAtBottom = not rssIconAtTop or not showHeaderImage rssAtBottom = not rssIconAtTop or (not showHeaderImage and not authorized)
if newswireContentStr and rssAtBottom: if newswireContentStr and rssAtBottom:
htmlStr += '<br><div class="columnIcons">' + rssIconStr + '</div>' htmlStr += '<br><div class="columnIcons">' + rssIconStr + '</div>'
return htmlStr return htmlStr