BLYNK_WRITE not working on Arduino Due

I had my program working well with the Blynk Library v0.3.3. Then I upgraded to v0.3.7 and since the upgrade, the BLYNK_WRITE(V1) or (V2) commands from my Android phone no longet come thru. I can send data to the phone just fine, but getting data from the phone no longer works.

BLYNK_WRITE(V1)
{
int x = param.asInt();
Serial.println(“Getting bAutoMode…”);
if (x > 0)
{
bAutoMode = ON;
}
else
{
bAutoMode = OFF;
}
}

Pretty simple code, except that it doesn’t work. Am I missing something, or did something change I am not aware of?

Yes, there might be some changes that have broken this…
Sorry I will be able to check it on Monday only.

Have you had a chance to look into the problem? Is there something more I could try?

Sorry, not yet. I created this issue: https://github.com/blynkkk/blynk-library/issues/141 to track it.