diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/com/android/browser/preferences/GeneralPreferencesFragment.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/android/browser/preferences/GeneralPreferencesFragment.java b/src/com/android/browser/preferences/GeneralPreferencesFragment.java index 1c82e1c1f..9c763e98a 100644 --- a/src/com/android/browser/preferences/GeneralPreferencesFragment.java +++ b/src/com/android/browser/preferences/GeneralPreferencesFragment.java @@ -426,7 +426,8 @@ public class GeneralPreferencesFragment extends PreferenceFragment // Re-parent the existing bookmarks to the newly create bookmarks bar folder ops.add(ContentProviderOperation.newUpdate(Bookmarks.CONTENT_URI) .withValueBackReference(Bookmarks.PARENT, 2) - .withSelection(Bookmarks.PARENT + "=?", + .withSelection(Bookmarks.ACCOUNT_NAME + " IS NULL AND " + + Bookmarks.PARENT + "=?", new String[] { Integer.toString(1) }) .build()); |
