From 065d35c2b2b0fb144520ad369cddd936cffe5081 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Thu, 9 Apr 2015 19:42:18 +0200 Subject: [PATCH] fix last success call --- static/js/fs.js | 1 + 1 file changed, 1 insertion(+) diff --git a/static/js/fs.js b/static/js/fs.js index 582ff09a..748e49d4 100644 --- a/static/js/fs.js +++ b/static/js/fs.js @@ -68,6 +68,7 @@ pandora.fs = (function() { function renameFile(old, name, callback) { that.fs.root.getFile(old, {}, function(fileEntry) { fileEntry.moveTo(that.fs.root, name); + callback(); }, callback); }