-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple connections not working #2823
Comments
This sounds like it could be related the fix that was just merged. github:orkestral/venom#master |
i have same issue not get the QR code |
Please confirm that installing the latest version from here npm install github:orkestral/venom#master is not working. |
i have done with this npm install github:orkestral/venom#master but still get same issue |
maybe use same diferent... try use this
|
It only loads in the Ubuntu 2022 terminal and does not generate qrcode
sometimes it generates for one but the rest do not
const venom = require('venom-bot');
venom
.create({session: 'teste'})
.then((client) => start(client))
.catch((error) => {
console.log(error);
});
venom
.create({session: 'teste2'})
.then((client) => start(client))
.catch((error) => {
console.log(error);
});
venom
.create({session: 'teste3'})
.then((client) => start(client))
.catch((error) => {
console.log(error);
});
venom
.create({session: 'teste4'})
.then((client) => start(client))
.catch((error) => {
console.log(error);
});
The text was updated successfully, but these errors were encountered: