the order matters

This commit is contained in:
Andrea Spacca 2022-08-19 10:05:30 +09:00
parent 06a242470b
commit 5a06a6baab
1 changed files with 10 additions and 7 deletions

View File

@ -20,8 +20,11 @@ nest_asyncio.apply()
rooms = dict()
global_bot = None
send_entry_lock = asyncio.Lock()
async def send_entry(blob, content_type, fmt_params, rooms):
async with send_entry_lock:
for room_id in rooms:
room = MatrixRoom(room_id=room_id, own_user_id=os.getenv("BOT_OWNERS"),
encrypted=rooms[room_id])