From ec77ab9c2082dddd2265532ca5f99d2dae5c498d Mon Sep 17 00:00:00 2001 From: MaysWind Date: Mon, 16 May 2016 21:45:54 +0800 Subject: [PATCH] fix stopped list cannot display --- app/scripts/controllers/list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/controllers/list.js b/app/scripts/controllers/list.js index a97d165..447d089 100644 --- a/app/scripts/controllers/list.js +++ b/app/scripts/controllers/list.js @@ -67,7 +67,7 @@ } else if (location == 'waiting') { invokeMethod = aria2RpcService.tellWaiting; params = [0, 1000]; - } else if (location == 'downloaded') { + } else if (location == 'stopped') { invokeMethod = aria2RpcService.tellStopped; params = [0, 1000]; }