Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d73f7de4 authored by Fred Quintana's avatar Fred Quintana Committed by Android Git Automerger
Browse files

am 4cb6fc7e: Merge change Icc48b1e7 into eclair

Merge commit '4cb6fc7e' into eclair-mr2

* commit '4cb6fc7e':
  don't request a sync when temp providers are created
parents 6d559f9d 4cb6fc7e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -135,9 +135,11 @@ public abstract class AbstractSyncableContentProvider extends SyncableContentPro
        public void onCreate(SQLiteDatabase db) {
            bootstrapDatabase(db);
            mSyncState.createDatabase(db);
            if (!isTemporary()) {
		ContentResolver.requestSync(null /* all accounts */,
                    mContentUri.getAuthority(), new Bundle());
	    }
        }

        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {