Fix bug re: parsing EAS 12 flags that caused missed messages, etc.

* This is bug #2071068
This commit is contained in:
Marc Blank 2009-08-22 11:42:51 -07:00
parent cab55743ac
commit a27291faac

View File

@ -199,7 +199,7 @@ public class EmailSyncAdapter extends AbstractSyncAdapter {
while (nextTag(Tags.EMAIL_FLAG) != END) {
switch (tag) {
case Tags.EMAIL_FLAG_STATUS:
state = true;
state = getValueInt() == 2;
break;
default:
skipTag();