Back to default timeline

main
Bob Mottram 2020-11-10 20:44:38 +00:00
parent 0f2f21359e
commit f040bdbc38
2 changed files with 5 additions and 3 deletions

View File

@ -4708,7 +4708,8 @@ class PubServer(BaseHTTPRequestHandler):
emailAddress = getEmailAddress(actorJson)
PGPpubKey = getPGPpubKey(actorJson)
PGPfingerprint = getPGPfingerprint(actorJson)
msg = htmlPersonOptions(self.server.cssCache,
msg = htmlPersonOptions(self.server.defaultTimeline,
self.server.cssCache,
self.server.translate,
baseDir, domain,
domainFull,

View File

@ -21,7 +21,8 @@ from webapp_utils import htmlHeader
from webapp_utils import htmlFooter
def htmlPersonOptions(cssCache: {}, translate: {}, baseDir: str,
def htmlPersonOptions(defaultTimeline: str,
cssCache: {}, translate: {}, baseDir: str,
domain: str, domainFull: str,
originPathStr: str,
optionsActor: str,
@ -204,7 +205,7 @@ def htmlPersonOptions(cssCache: {}, translate: {}, baseDir: str,
optionsStr += optionsLinkStr
backPath = '/'
if nickname:
backPath = '/users/' + nickname
backPath = '/users/' + nickname + '/' + defaultTimeline
optionsStr += \
' <a href="' + backPath + '"><button type="button" ' + \
'class="buttonIcon" name="submitBack">' + translate['Go Back'] + \