Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2025 03:36 AM - edited 08-26-2025 03:40 AM
Hello,
Change it from an OR to AND.
You're using OR between two conditions, like this:
if condition1 OR condition2
This means the code will proceed if either condition is true, even if the other is false.
✅ Why you need AND
You want both conditions to be true at the same time for the logic to proceed. So, the correct logic is:
if condition1 AND condition2
This ensures the block only runs when both conditions are met.
(On the phone so i'll give this picture)