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 ' +
|
print('AUTH: epicyon cookie ' +
|
||||||
'authorization failed, header=' +
|
'authorization failed, header=' +
|
||||||
self.headers['Cookie'].replace('epicyon=', '') +
|
self.headers['Cookie'].replace('epicyon=', '') +
|
||||||
' token_str=' + token_str + ' tokens=' +
|
' token_str=' + token_str)
|
||||||
str(self.server.tokens_lookup))
|
|
||||||
return False
|
return False
|
||||||
print('AUTH: Header cookie was not authorized')
|
print('AUTH: Header cookie was not authorized')
|
||||||
return False
|
return False
|
||||||
|
|
8
posts.py
8
posts.py
|
@ -3891,8 +3891,12 @@ def _create_box_indexed(recent_posts_cache: {},
|
||||||
print('WARN: features timeline. ' +
|
print('WARN: features timeline. ' +
|
||||||
'Unable to locate post ' + post_url)
|
'Unable to locate post ' + post_url)
|
||||||
else:
|
else:
|
||||||
print('WARN: Unable to locate post ' + post_url +
|
if timeline_nickname == 'news':
|
||||||
' nickname ' + nickname)
|
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:
|
if total_posts_count < 3:
|
||||||
print('Posts added to json timeline ' + boxname + ': ' +
|
print('Posts added to json timeline ' + boxname + ': ' +
|
||||||
|
|
Loading…
Reference in New Issue