WAppAI / assistant

A WhatsApp chatbot that leverages Bing AI's and others LLMs conversational capabilities.
MIT License
87 stars 27 forks source link

Stuck at "logging in". #166

Closed Abdalnablse10 closed 10 months ago

Abdalnablse10 commented 10 months ago

It used to work, tried to remove it then clone it again but that didn't work.

Luisotee commented 10 months ago

This problem is related with whatsapp web js, there is already a PR of a fix but they havent merged it yet. You can fix it by yourself in node_modules/whatsapp-web.js/src/Client.js by replacing:

const INTRO_IMG_SELECTOR = '[data-icon=\'chat\']';

with:

const INTRO_IMG_SELECTOR = ['.selectable-text:not([style*="display: none"])'];

For more details you can see in the PR here

Abdalnablse10 commented 10 months ago

That did the trick, thank you, do i close the issue or wait for the merge?

Luisotee commented 10 months ago

Better to leave it open until it's permanently fixed in the library

Luisotee commented 10 months ago

Fixed with #170