diff --git a/hive/indexer/accounts.py b/hive/indexer/accounts.py index 66a6cbb7..0780109b 100644 --- a/hive/indexer/accounts.py +++ b/hive/indexer/accounts.py @@ -211,7 +211,7 @@ def _sql(cls, account, cached_at): 'display_name': profile['name'], 'about': profile['about'], 'location': profile['location'], - 'website': profile['website'], + 'website': profile['website'][0:100] if len(profile['website']) > 100 else profile['website'], 'profile_image': profile['profile_image'], 'cover_image': profile['cover_image'],