feature(dom) processFile: rm from storage only if operation is move

This commit is contained in:
coderaiser 2014-08-27 07:16:24 -04:00
parent 4b4e3d42f3
commit f859d9a3ee

View file

@ -1522,7 +1522,9 @@ var CloudCmd, Util, DOM, CloudFunc, Dialog;
DOM.setCurrentFile(dotDot);
CloudCmd.refresh(dotDot, panelPassive);
DOM.Storage.remove(from);
if (operation.move)
DOM.Storage.remove(from);
});
}
}