diff --git a/cash_payments_handler.html b/cash_payments_handler.html
index 4d46f7c..494c713 100644
--- a/cash_payments_handler.html
+++ b/cash_payments_handler.html
@@ -11409,8 +11409,8 @@
enumerable: false
});
- const ENVR = 'TEST'; // LIVE, TEST
- const WS = 'ws';
+ const ENVR = 'LIVE'; // LIVE, TEST
+ const WS = 'wss';
const DBName = "paymentsHandlerDBRemote";
if(ENVR === 'LIVE') {
@@ -14101,7 +14101,7 @@
const all_deposits = await readAllDB('deposits');
let t = `
`;
for (const ad of all_deposits) {
- if(ad.token_transfer_txid !=="string") continue;
+ if(typeof ad.token_transfer_txid !=="string") continue;
t += `- User UPI: ${ad.user_upi}
`;
t += `- Time: ${ad.timestamp}
`;
t += `- Amount: ${ad.depositing_amount}
`;
@@ -14124,7 +14124,7 @@
const all_withdraws = await readAllDB('withdraws');
let t = ``;
for (const ad of all_withdraws) {
- if(ad.upi_txid !=="string") continue;
+ if(typeof ad.upi_txid !=="string") continue;
t += `- Cashier UPI TXID: ${ad.upi_txid}
`;
t += `- Time: ${ad.timestamp}
`;
t += `- Amount: ${ad.withdraw_amount}
`;