catch InstantUploadAuto type.

Bug: 8693493
Change-Id: I00e792f0fe6bc11bf2f32b41399d26cad62d8a41
diff --git a/src/com/android/dreams/phototable/PicasaSource.java b/src/com/android/dreams/phototable/PicasaSource.java
index eb8fd1f..0db98af 100644
--- a/src/com/android/dreams/phototable/PicasaSource.java
+++ b/src/com/android/dreams/phototable/PicasaSource.java
@@ -63,6 +63,7 @@
     private static final String PICASA_TYPE_IMAGE_VALUE = "image";
     private static final String PICASA_POSTS_TYPE = "Buzz";
     private static final String PICASA_UPLOAD_TYPE = "InstantUpload";
+    private static final String PICASA_UPLOADAUTO_TYPE = "InstantUploadAuto";
 
     private final int mMaxPostAblums;
     private final String mPostsAlbumName;
@@ -357,7 +358,8 @@
                     String user = (userIndex >= 0 ? cursor.getString(userIndex) : "-1");
                     String type = (typeIndex >= 0 ? cursor.getString(typeIndex) : "none");
                     boolean isPosts = (typeIndex >= 0 && PICASA_POSTS_TYPE.equals(type));
-                    boolean isUpload = (typeIndex >= 0 && PICASA_UPLOAD_TYPE.equals(type));
+                    boolean isUpload = (typeIndex >= 0 &&
+                            (PICASA_UPLOAD_TYPE.equals(type) || PICASA_UPLOADAUTO_TYPE.equals(type)));
 
                     String account = accounts.get(user);
                     if (account == null) {