From 18111aa74473d6d5fc7c8c1aedcea5f4250081ab Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 23 Aug 2019 21:18:25 +0300 Subject: [PATCH] fix(client) rm additional dialog --- client/client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;