Hi, I’m new to Kodular and I keep getting this error when I try to test my app. Thanks in advance for your help.
Hi dear,
Welcome to the Kodular community!
taking a quick look I noticed two things that could cause problems.
-
GetValue, if it doesn’t find the value, returns valueIfTagNotThere = 0, so if the tag isn’t found the condition becomes if 0, butifexpects either true or false.
So either you check if GetValue <> 0,
or you setvalueIfTagNotThereto false so that if the tag isn’t found it goes to the else branch.
-
Also, in the
Clock.Timeryou’re subtractingClock.Nowfromglobal_End_Time,
Clock.Nowmust be converted to milliseconds.



