diff --git a/webapp_create_post.py b/webapp_create_post.py index e9dec5f8e..c65c8d016 100644 --- a/webapp_create_post.py +++ b/webapp_create_post.py @@ -588,15 +588,16 @@ def html_new_post(edit_post_params: {}, new_post_image_section += end_edit_section() new_post_emoji_section = '' - common_emoji_str = html_common_emoji(base_dir, 16) - if common_emoji_str: - new_post_emoji_section = \ - begin_edit_section('😀 ' + translate['Common emoji']) - new_post_emoji_section += \ - '
\n' - new_post_emoji_section += common_emoji_str - new_post_emoji_section += end_edit_section() + if not path.endswith('/newreadingstatus'): + common_emoji_str = html_common_emoji(base_dir, 16) + if common_emoji_str: + new_post_emoji_section = \ + begin_edit_section('😀 ' + translate['Common emoji']) + new_post_emoji_section += \ + '
\n' + new_post_emoji_section += common_emoji_str + new_post_emoji_section += end_edit_section() scope_icon = 'scope_public.png' scope_description = translate['Public']