If Multiple Condition Delay / Not working as expected

For some reason, multiple conditions in one if statement stopped working. All of the boxes should have "Called" in it like the one on "Separated Multiple Condition"

Screen recording 2026-03-30 9.42.10 AM

Here is the snippet (All boxes should be called when pressed 2 or 3):

{run: tab=1
}

Must return No: {button: tab=1
; label=set tab 1}
Must return Yes: {button: tab=2
; label=set tab 2}{button: tab=3
; label=set tab 3}

{=tab}

If (One Condition):

{if: tab>1}Called{endif} Is greater than 1:
{if: tab<>999}Called{endif} Is not equal to 999:
{if: tab<>101}Called{endif} Is not equal to 101:

If (Multiple Condition):

{if: (tab>1 and tab<>999)}Called{endif} Is greater than 1 and Is not equal to 999
{if: (tab>1 and not (tab==999))}Called{endif} Is greater than 1 and Is not equal to 999
{if: (tab>1) and (tab<>999) and (tab<>101)}Called{endif} Is greater than 1 and is not equal to 999 and is not equal to 101

If (Separated Multiple Condition):

{if: tab>1}{if: tab<>999}{if: tab<>101}Called{endif}{endif}{endif} Is greater than 1 and is not equal to 999 and is not equal to 101

Ternary (Multiple Condition):

{="Called" if tab>1 and tab<>999 else ""} Is greater than 1 and Is not equal to 999

Hey @James_Loria apologies for this issue! We're looking into this right now and I will get back to you soon with updates.

1 Like

Sure, thank you. Please take your time.

Hello @Gaurang_Tandon, it appears that it also affected "or" conditions. It is also not working as it is supposed to do.

Hey @James_Loria thanks for the follow-up. As of now, the fixed version is live in the Text Blaze Desktop app and in the Beta version of the Text Blaze extension. The update should be live in the public Text Blaze extension by early next week.

Let me know if you'd like to test it in the Beta version to ensure we fixed the same issue that you're facing :slight_smile:

2 Likes

Update: the updated/fixed version (v3.3.8) is live in the public Text Blaze version, and will be gradually rolling out to Text Blaze users this week. Thanks for your patience!

If you'd like to get the update sooner, please reinstall the extension from the Web Store at this link: https://chromewebstore.google.com/detail/text-blaze-templates-and/idgadaccgipmpannjkmfddolnnhmeklj

2 Likes

Thank you @Gaurang_Tandon! Have a great one.