am ec11b965
: Merge change 25348 into eclair
Merge commit 'ec11b9658b162c8abcf9757591df4fc49639565f' into eclair-plus-aosp * commit 'ec11b9658b162c8abcf9757591df4fc49639565f': Fix "reloadFolderList" service call in SyncManager
This commit is contained in:
commit
b8ed678308
@ -825,7 +825,11 @@ public class SyncManager extends Service implements Runnable {
|
||||
if (c.moveToFirst()) {
|
||||
synchronized(sSyncToken) {
|
||||
Mailbox m = new Mailbox().restore(c);
|
||||
String syncKey = m.mSyncKey;
|
||||
Account acct = Account.restoreAccountWithId(context, accountId);
|
||||
if (acct == null) {
|
||||
return;
|
||||
}
|
||||
String syncKey = acct.mSyncKey;
|
||||
// No need to reload the list if we don't have one
|
||||
if (!force && (syncKey == null || syncKey.equals("0"))) {
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user