diff --git a/hive/server/bridge_api/methods.py b/hive/server/bridge_api/methods.py index fe792f0c8aae861b039e1ebb6cfa4e07c198ec16..48219219f77abccebd413b32d890828d4a840961 100644 --- a/hive/server/bridge_api/methods.py +++ b/hive/server/bridge_api/methods.py @@ -370,7 +370,7 @@ async def get_follow_list(context, observer, follow_type='blacklisted'): valid_types = ['blacklisted', 'follow_blacklist', 'muted', 'follow_muted'] assert follow_type in valid_types, 'invalid follow_type' - account_data = get_profile(context, observer) + account_data = await get_profile(context, observer) metadata = account_data["metadata"]["profile"] blacklist_description = metadata["blacklist_description"] if "blacklist_description" in metadata else '' muted_list_description = metadata["muted_list_description"] if "muted_list_description" in metadata else ''