Hello all,
I’m fairly new here, and to Make, but I didn’t find any thread about this (potential?) bug. Please do excuse me if it’s already been mentioned.
When sending an email to my mailhook and parsing subject and topic, all works fine. Except if I send the mail from Gmail and leave the subject empty.
Then, the parsing (Match pattern (Advanced)) invariably crashes:
Only solution seems to create and set a new variable to " " and use it instead (didn’t try to “replace()” directly in the mailhook.subject variable):
Setting the new variable to “” (without a space) also crashes the parser.
The problem does not happen for the mailhook.text (body) variable, however. The parser does crash on an empty value, BUT mailhook.text is NOT empty. Let me explain.
Using the following…
… does not set 1.Text to “[Empty Message]” but to “filled_2”. And trying with a ifEmpty()…
… shows that 1.Text is not empty!
Even though it does appear so
Anyone knows anything about this issue?