@smashah You have now stopped loading QR CODE

failed :(
here it is working. ;P
for min stopped loading QR CODE
Thanks @phantom-limb, works!
After applying the change of commit #da482da
qrCode image is not in base64 i guess and that is the reason not able to save to a .png file to export to a webpage. can you help. The following piece of code is giving error while converting the qrcode response to base64. qrcode is NULL
ev.on('qr.**', async (qrcode,sessionId) => {
console.log("TCL: qrcode,sessioId", qrcode,sessionId)
//base64 encoded qr code image
const imageBuffer = Buffer.from(qrcode.replace('data:image/png;base64,',''), 'base64');
fs.writeFileSync(`qr_code${sessionId?'_'+sessionId:''}.png`, imageBuffer);
});

@habibshahid, see: https://github.com/smashah/sulla/pull/50
Que estranho!
A rather strange business that my project runs on NodeJS so the installation of sulla is done through npm i sulla.
If I enter inside node_modules and select this commit the error displayed is Error: Cannot find module 'sulla'
Is there a trick to importing the commit correctly?
Fix is live
Please make sure you are using ^1.5.5.
@rafael-sarti sulla is the original project, this is sulla-hotfix. Use this to install.
npm i sulla-hotfix
Thanks all for bringing this up and wroking through it. MVP of the day is @phantom-limb !
Thank you Gents.
Thank you @phantom-limb works for me too!
Most helpful comment
here it is working. ;P