am cacf4c53
: am 3c2f782c
: When we migrate Exchange folders, set the sync status to INITIAL_SYNC_NEEDED
* commit 'cacf4c53de0d619b67ae8c1545c76e8aac10018c': When we migrate Exchange folders, set the sync status to INITIAL_SYNC_NEEDED
This commit is contained in:
commit
3381416c55
@ -96,6 +96,8 @@ public abstract class EmailContent {
|
||||
public static final int SYNC_STATUS_USER = UIProvider.SyncStatus.USER_REFRESH;
|
||||
public static final int SYNC_STATUS_BACKGROUND = UIProvider.SyncStatus.BACKGROUND_SYNC;
|
||||
public static final int SYNC_STATUS_LIVE = UIProvider.SyncStatus.LIVE_QUERY;
|
||||
public static final int SYNC_STATUS_INITIAL_SYNC_NEEDED =
|
||||
UIProvider.SyncStatus.INITIAL_SYNC_NEEDED;
|
||||
|
||||
public static final int LAST_SYNC_RESULT_SUCCESS = UIProvider.LastSyncResult.SUCCESS;
|
||||
public static final int LAST_SYNC_RESULT_AUTH_ERROR = UIProvider.LastSyncResult.AUTH_ERROR;
|
||||
|
@ -77,7 +77,8 @@ public class EmailConversationCursor extends CursorWrapper implements
|
||||
mExtras.putInt(UIProvider.CursorExtraKeys.EXTRA_TOTAL_COUNT, mailbox.mTotalCount);
|
||||
if (mailbox.mUiSyncStatus == EmailContent.SYNC_STATUS_BACKGROUND
|
||||
|| mailbox.mUiSyncStatus == EmailContent.SYNC_STATUS_USER
|
||||
|| mailbox.mUiSyncStatus == EmailContent.SYNC_STATUS_LIVE) {
|
||||
|| mailbox.mUiSyncStatus == EmailContent.SYNC_STATUS_LIVE
|
||||
|| mailbox.mUiSyncStatus == EmailContent.SYNC_STATUS_INITIAL_SYNC_NEEDED) {
|
||||
mExtras.putInt(UIProvider.CursorExtraKeys.EXTRA_STATUS,
|
||||
UIProvider.CursorStatus.LOADING);
|
||||
} else if (mailbox.mUiSyncStatus == EmailContent.SYNC_STATUS_NONE) {
|
||||
|
Loading…
Reference in New Issue
Block a user