Commit 44273dd9 authored by Akshay Subramanian's avatar Akshay Subramanian Committed by GitHub

Fix_users_list_storage_RAM (#778)

parent 69e91c86
...@@ -194,6 +194,8 @@ async def Users(u, config, conn): ...@@ -194,6 +194,8 @@ async def Users(u, config, conn):
if hasattr(config.Store_object_follow_list, 'append'): if hasattr(config.Store_object_follow_list, 'append'):
config.Store_object_follow_list.append(user) config.Store_object_follow_list.append(user)
elif hasattr(config.Store_object_users_list, 'append'):
config.Store_object_users_list.append(user)
else: else:
users_list.append(user) # twint.user.user users_list.append(user) # twint.user.user
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment