mirror of https://gitlab.com/bashrc2/epicyon
Merge branch 'main' of gitlab.com:bashrc2/epicyon
commit
aeb7283e45
|
@ -1829,8 +1829,7 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
print('AUTH: epicyon cookie ' +
|
||||
'authorization failed, header=' +
|
||||
self.headers['Cookie'].replace('epicyon=', '') +
|
||||
' token_str=' + token_str + ' tokens=' +
|
||||
str(self.server.tokens_lookup))
|
||||
' token_str=' + token_str)
|
||||
return False
|
||||
print('AUTH: Header cookie was not authorized')
|
||||
return False
|
||||
|
|
8
posts.py
8
posts.py
|
@ -3891,8 +3891,12 @@ def _create_box_indexed(recent_posts_cache: {},
|
|||
print('WARN: features timeline. ' +
|
||||
'Unable to locate post ' + post_url)
|
||||
else:
|
||||
print('WARN: Unable to locate post ' + post_url +
|
||||
' nickname ' + nickname)
|
||||
if timeline_nickname == 'news':
|
||||
print('WARN: Unable to locate news post ' +
|
||||
post_url + ' nickname ' + nickname)
|
||||
else:
|
||||
print('WARN: Unable to locate post ' + post_url +
|
||||
' nickname ' + nickname)
|
||||
|
||||
if total_posts_count < 3:
|
||||
print('Posts added to json timeline ' + boxname + ': ' +
|
||||
|
|
Loading…
Reference in New Issue