summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/src/com/android/providers/downloads/ui/DownloadList.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/src/com/android/providers/downloads/ui/DownloadList.java b/ui/src/com/android/providers/downloads/ui/DownloadList.java
index 57530474..443491a9 100644
--- a/ui/src/com/android/providers/downloads/ui/DownloadList.java
+++ b/ui/src/com/android/providers/downloads/ui/DownloadList.java
@@ -151,9 +151,9 @@ public class DownloadList extends Activity {
super.onCreate(icicle);
// Trampoline over to new management UI
- final Intent intent = new Intent(Intent.ACTION_MANAGE_DOCUMENT);
- intent.setData(DocumentsContract.buildRootUri(
- Constants.STORAGE_AUTHORITY, Constants.STORAGE_ROOT));
+ final Intent intent = new Intent(DocumentsContract.ACTION_MANAGE_DOCUMENTS);
+ intent.setData(DocumentsContract.buildDocumentUri(
+ Constants.STORAGE_AUTHORITY, Constants.STORAGE_DOC_ID_ROOT));
startActivity(intent);
finish();
}