Skip to content

Commit

Permalink
Merge pull request #8 from web3bio/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
ZhongFuze authored Nov 5, 2024
2 parents 3ffbbe2 + f1b6369 commit dde2299
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/resolver/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Author: Zella Zhong
Date: 2024-10-06 19:05:41
LastEditors: Zella Zhong
LastEditTime: 2024-11-06 01:40:17
LastEditTime: 2024-11-06 02:10:03
FilePath: /data_service/src/resolver/fetch.py
Description:
'''
Expand Down Expand Up @@ -289,19 +289,19 @@ async def batch_fetch_all(info, vertices_map):
tasks.append(query_profile_by_xrpc_addresses(info, identities))
elif platform_enum == Platform.cosmos:
tasks.append(query_profile_by_cosmos_addresses(info, identities))
elif platform == Platform.twitter:
elif platform_enum == Platform.twitter:
tasks.append(query_profile_by_twitter_handles(info, identities))
elif platform == Platform.github:
elif platform_enum == Platform.github:
tasks.append(query_profile_by_github_handles(info, identities))
elif platform == Platform.reddit:
elif platform_enum == Platform.reddit:
tasks.append(query_profile_by_reddit_handles(info, identities))
elif platform == Platform.dns:
elif platform_enum == Platform.dns:
tasks.append(query_profile_by_dns_handles(info, identities))
elif platform == Platform.facebook:
elif platform_enum == Platform.facebook:
tasks.append(query_profile_by_facebook_handles(info, identities))
elif platform == Platform.keybase:
elif platform_enum == Platform.keybase:
tasks.append(query_profile_by_keybase_handles(info, identities))
elif platform == Platform.nextid:
elif platform_enum == Platform.nextid:
tasks.append(query_profile_by_nextid_handles(info, identities))
else:
logging.warning(f"Unsupported platform: {platform}")
Expand Down

0 comments on commit dde2299

Please sign in to comment.