added removeWhiteSpaces in cashier and improved parse_flo_comments
This commit is contained in:
parent
3ed8daec02
commit
301e26bbae
@ -12053,7 +12053,7 @@
|
||||
|
||||
fetch_configs: function(callback) {
|
||||
this.parse_flo_comments(function(floData) {
|
||||
let RMAssets = floData.trim();
|
||||
let RMAssets = removeWhiteSpaces(floData);
|
||||
let floAssetsArray = RMAssets.split("#!#");
|
||||
|
||||
if (
|
||||
@ -13752,6 +13752,10 @@
|
||||
}, []);
|
||||
}
|
||||
|
||||
function removeWhiteSpaces(text='') {
|
||||
return text.replace(/\s/g,'');
|
||||
}
|
||||
|
||||
/*CODE_JUNCTION: Operating codes start*/
|
||||
|
||||
// Fetch configs from Master Key
|
||||
|
||||
@ -12250,7 +12250,7 @@
|
||||
|
||||
fetch_configs: function(callback) {
|
||||
this.parse_flo_comments(function(floData) {
|
||||
let RMAssets = floData.trim();
|
||||
let RMAssets = removeWhiteSpaces(floData);
|
||||
let floAssetsArray = RMAssets.split("#!#");
|
||||
|
||||
if (
|
||||
@ -26208,8 +26208,6 @@
|
||||
break;
|
||||
|
||||
case "deposit_cash_request_response":
|
||||
console.info("Info: Backup of cash request is prohibited.");
|
||||
return false;
|
||||
if (
|
||||
typeof res_obj.params !== "object" ||
|
||||
typeof res_obj.params[0] !== "object"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user