From 468df16a85e17914d7cce716c67373f175bd1e2e Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 1 Nov 2020 10:11:39 +0000 Subject: [PATCH] Check authorization when showing rss icon at bottom of mobile screen --- webinterface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webinterface.py b/webinterface.py index 6817f2bbd..d36ae0c1b 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5897,7 +5897,7 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str, htmlStr += newswireContentStr # 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: htmlStr += '
' + rssIconStr + '
' return htmlStr