From 3c87ce0fa36154acdcaf8180c6a7b00737585aa4 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 2 Aug 2019 13:50:52 +0300 Subject: [PATCH] fix(operation) first copy after startup fails (close #251) --- client/modules/operation/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/modules/operation/index.js b/client/modules/operation/index.js index ff913638..82a0e75d 100644 --- a/client/modules/operation/index.js +++ b/client/modules/operation/index.js @@ -33,7 +33,7 @@ const Operation = {}; let Loaded; -let copyFn = callbackify(RESTful.copy); +let copyFn = callbackify(RESTful.cp); let moveFn = callbackify(RESTful.mv); let deleteFn = callbackify(RESTful.delete); let extractFn = callbackify(RESTful.extract);