Login Page - Create Account

Support Board


Date/Time: Thu, 05 Jun 2025 02:04:43 +0000



Post From: Replay Orders Not Being Sent

[2025-06-02 19:31:55]
Gradient - Posts: 142
The second issue has been resolved.

I needed to nest logic inside of a parentheses.

For example:

orignal

if( (X ) || (Y) || ( Z) && A){

//do something

}


solution:

if( ( (X) ||( Y) || ( Z)) && A ){

//do something
}


Thanks
Date Time Of Last Edit: 2025-06-02 19:33:05