From 4cdbfc84dd098d2d6befe5bef479cf4ea98e03bb Mon Sep 17 00:00:00 2001 From: Andrey Prygunkov Date: Sun, 12 Mar 2017 20:09:50 +0100 Subject: [PATCH] #346: changing category via drop-down changes pp-parameters accordingly to the new category. --- webui/downloads.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/downloads.js b/webui/downloads.js index 32204be5..d3699424 100644 --- a/webui/downloads.js +++ b/webui/downloads.js @@ -677,7 +677,7 @@ var Downloads = (new function($) var category = $(this).parent().attr('data'); var nzbids = $CategoryMenu.data('nzbids'); notification = '#Notif_Downloads_Changed'; - RPC.call('editqueue', ['GroupSetCategory', category, nzbids], editCompleted); + RPC.call('editqueue', ['GroupApplyCategory', category, nzbids], editCompleted); } }(jQuery));