From f32df2a970f025e9aafcfdd0997ddf4a3ea6b189 Mon Sep 17 00:00:00 2001 From: jsalyers <jsalyers@syncad.com> Date: Fri, 5 Jun 2020 16:27:08 -0400 Subject: [PATCH] [JES] Anoter bug --- hive/server/bridge_api/methods.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hive/server/bridge_api/methods.py b/hive/server/bridge_api/methods.py index b3e0987f1..5d9b19af7 100644 --- a/hive/server/bridge_api/methods.py +++ b/hive/server/bridge_api/methods.py @@ -206,7 +206,7 @@ async def get_ranked_posts(context, sort, start_author='', start_permlink='', async def append_statistics_to_post(post, row, is_pinned, blacklists_for_user=None): """ apply information such as blacklists and community names/roles to a given post """ if not blacklists_for_user: - post['blacklists'] = await Mutes.lists(row['author'], row['author_rep']) + post['blacklists'] = Mutes.lists(row['author'], row['author_rep']) else: post['blacklists'] = [] if row['author'] in blacklists_for_user: -- GitLab