fix: pass object to.auth

This commit is contained in:
Barış Soner Uşaklı
2025-09-06 13:47:46 -04:00
parent a9fffd7ca0
commit 290a9395c0

View File

@@ -71,7 +71,7 @@ connection.connect = async function (options) {
});
if (options.password) {
cxn.auth(options.password);
cxn.auth({ password: options.password });
}
});
};