From a63d62595cba08d24ea1742addc8676c31ef6efd Mon Sep 17 00:00:00 2001 From: ClemDee Date: Wed, 3 Jul 2019 13:55:30 +0200 Subject: [PATCH] Fix missing semicolon --- www/drive/inner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/drive/inner.js b/www/drive/inner.js index 185e59f0c..6df932070 100644 --- a/www/drive/inner.js +++ b/www/drive/inner.js @@ -1399,7 +1399,7 @@ define([ }); cb(); }; - if (paths.some(function (p) { return manager.comparePath(newPath, p) })) { return void cb(); } + if (paths.some(function (p) { return manager.comparePath(newPath, p); })) { return void cb(); } manager.move(paths, newPath, newCb, copy); }; // Delete paths from the drive and/or shared folders (without moving them to the trash)