Fix messages deletion for poe

This commit is contained in:
SillyLossy
2023-04-04 12:35:43 +03:00
parent 3eb9fa975c
commit 2ab42f40f7
2 changed files with 3 additions and 3 deletions

View File

@ -1652,7 +1652,7 @@ app.post('/purge_poe', jsonParser, async (request, response) => {
try {
const client = await getPoeClient(token);
await client.purge_conversation(bot, count)
await client.purge_conversation(bot, count);
client.disconnect_ws();
return response.send({"ok" : true});