diff --git a/client/client.js b/client/client.js index 78da2d75..a963dc2c 100644 --- a/client/client.js +++ b/client/client.js @@ -366,10 +366,10 @@ function CloudCmdProto(DOM) { order, }); - const [e, newObj] = await RESTful.read(path + query, 'json'); + const [, newObj] = await RESTful.read(path + query, 'json'); if (!newObj) - return Dialog.alert(`Can't read: ${e.message}`); + return; // that's OK, error handled by RESTful options.sort = sort; options.order = order;