increase receive message timeout

This commit is contained in:
Bruno Windels 2018-08-15 15:17:11 +02:00
parent 956688237a
commit 440b1032d5

View file

@ -33,7 +33,7 @@ module.exports = async function receiveMessage(session, message) {
}
});
// wait a bit for the incoming event to be rendered
await session.delay(300);
await session.delay(500);
let lastTile = await session.query(".mx_EventTile_last");
const senderElement = await lastTile.$(".mx_SenderProfile_name");
const bodyElement = await lastTile.$(".mx_EventTile_body");