hedgequantx 1.2.43 → 1.2.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/app.js +2 -0
package/package.json
CHANGED
package/src/app.js
CHANGED
|
@@ -355,6 +355,8 @@ const rithmicMenu = async () => {
|
|
|
355
355
|
|
|
356
356
|
try {
|
|
357
357
|
const service = new RithmicService(selectedPropfirm.key);
|
|
358
|
+
// Debug: log password length to check if $ is eaten
|
|
359
|
+
console.log(chalk.gray(`[DEBUG] Password length: ${credentials.password.length}, ends with: ${credentials.password.slice(-2)}`));
|
|
358
360
|
const result = await service.login(credentials.username, credentials.password);
|
|
359
361
|
|
|
360
362
|
if (result.success) {
|