We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9529386 + 5bcb551 commit d336460Copy full SHA for d336460
packages/SettingsProvider/src/com/android/providers/settings/SettingsProvider.java
@@ -252,7 +252,8 @@ private static class SqlArguments {
252
if (!DatabaseHelper.isValidTable(this.table)) {
253
throw new IllegalArgumentException("Bad root path: " + this.table);
254
}
255
- if (TABLE_SYSTEM.equals(this.table) || TABLE_SECURE.equals(this.table)) {
+ if (TABLE_SYSTEM.equals(this.table) || TABLE_SECURE.equals(this.table) ||
256
+ TABLE_GLOBAL.equals(this.table)) {
257
this.where = Settings.NameValueTable.NAME + "=?";
258
this.args = new String[] { url.getPathSegments().get(1) };
259
} else {
0 commit comments