From 1834b6efe184a8bd6db4a7126595a492427d2119 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Tue, 4 Jun 2013 08:31:42 +0000 Subject: [PATCH] dont add keys to request if no keys are requested, fixed #1567 --- static/js/pandora/list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/pandora/list.js b/static/js/pandora/list.js index ea6ba472e..9d0096bf4 100644 --- a/static/js/pandora/list.js +++ b/static/js/pandora/list.js @@ -84,7 +84,7 @@ pandora.ui.list = function() { //Ox.Log('', 'data, pandora.Query.toObject', data, pandora.Query.toObject()) pandora.api.find(Ox.extend(data, { query: pandora.user.ui.find, - keys: ['modified'].concat(data.keys) + keys: data.keys ? ['modified'].concat(data.keys) : void 0 }), callback); return Ox.clone(data, true); },