mirror of https://gitlab.com/bashrc2/epicyon
Comments
parent
cec37191c7
commit
9d6273277f
2
inbox.py
2
inbox.py
|
@ -1715,10 +1715,12 @@ def _receive_edit_to_post(recent_posts_cache: {}, message_json: {},
|
||||||
post_history_json = {}
|
post_history_json = {}
|
||||||
if os.path.isfile(post_history_filename):
|
if os.path.isfile(post_history_filename):
|
||||||
post_history_json = load_json(post_history_filename, 1)
|
post_history_json = load_json(post_history_filename, 1)
|
||||||
|
# get the updated or published date
|
||||||
if post_json_object['object'].get('updated'):
|
if post_json_object['object'].get('updated'):
|
||||||
published_str = post_json_object['object']['updated']
|
published_str = post_json_object['object']['updated']
|
||||||
else:
|
else:
|
||||||
published_str = post_json_object['object']['published']
|
published_str = post_json_object['object']['published']
|
||||||
|
# add to the history for this date
|
||||||
if not post_history_json.get(published_str):
|
if not post_history_json.get(published_str):
|
||||||
post_history_json[published_str] = post_json_object
|
post_history_json[published_str] = post_json_object
|
||||||
save_json(post_history_json, post_history_filename)
|
save_json(post_history_json, post_history_filename)
|
||||||
|
|
Loading…
Reference in New Issue