You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line 181 tests "if(text)" and incase no params are passed the text resolves to "null" as string, this inturn will enter the condition and an exception will be thrown.
I've replaced this line with:
if(text && text != "null")
This puts me back on track
Oded
The text was updated successfully, but these errors were encountered:
line 181 tests "if(text)" and incase no params are passed the text resolves to "null" as string, this inturn will enter the condition and an exception will be thrown.
I've replaced this line with:
if(text && text != "null")
This puts me back on track
Oded
The text was updated successfully, but these errors were encountered: