Loading json

merge-requests/30/head
Bob Mottram 2022-03-01 14:11:29 +00:00
parent d97395bb9a
commit d16a06b16f
1 changed files with 5 additions and 2 deletions

View File

@ -14,6 +14,7 @@ from utils import get_account_timezone
from utils import get_display_name from utils import get_display_name
from utils import get_nickname_from_actor from utils import get_nickname_from_actor
from utils import has_object_dict from utils import has_object_dict
from utils import load_json
from webapp_utils import html_header_with_external_style from webapp_utils import html_header_with_external_style
from webapp_utils import html_footer from webapp_utils import html_footer
from webapp_utils import get_banner_file from webapp_utils import get_banner_file
@ -49,8 +50,10 @@ def html_likers_of_post(base_dir: str, nickname: str,
html_header_with_external_style(css_filename, instance_title, None) html_header_with_external_style(css_filename, instance_title, None)
# get the post which was liked # get the post which was liked
post_json_object = \ filename = locate_post(base_dir, nickname, domain, post_url)
locate_post(base_dir, nickname, domain, post_url) if not filename:
return None
post_json_object = load_json(filename)
if not post_json_object: if not post_json_object:
return None return None
if not post_json_object.get('actor') or not post_json_object.get('object'): if not post_json_object.get('actor') or not post_json_object.get('object'):