summaryrefslogtreecommitdiffstats
path: root/src/com/android/photos/data/PhotoProvider.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/photos/data/PhotoProvider.java')
-rw-r--r--src/com/android/photos/data/PhotoProvider.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/photos/data/PhotoProvider.java b/src/com/android/photos/data/PhotoProvider.java
index 084401d16..8413206b1 100644
--- a/src/com/android/photos/data/PhotoProvider.java
+++ b/src/com/android/photos/data/PhotoProvider.java
@@ -84,7 +84,7 @@ public class PhotoProvider extends SQLiteContentProvider {
*/
public static interface Photos extends BaseColumns {
/** Internal database table used for basic photo information. */
- public static final String TABLE = "photo";
+ public static final String TABLE = "photos";
/** Content URI for basic photo and video information. */
public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE);
@@ -123,7 +123,7 @@ public class PhotoProvider extends SQLiteContentProvider {
*/
public static interface Albums extends BaseColumns {
/** Internal database table used album information. */
- public static final String TABLE = "album";
+ public static final String TABLE = "albums";
/** Content URI for album information. */
public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE);