From c743ad7a717fdc7fb0fdc3707604add6d90a49d6 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sat, 11 Apr 2015 00:40:32 +0200 Subject: [PATCH] log move error --- static/js/fs.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/static/js/fs.js b/static/js/fs.js index 4d5bb177..2a0a85bf 100644 --- a/static/js/fs.js +++ b/static/js/fs.js @@ -69,7 +69,10 @@ pandora.fs = (function() { that.fs.root.getFile(old, {}, function(fileEntry) { fileEntry.moveTo(that.fs.root, name); callback(); - }, callback); + }, function() { + Ox.Log('FS', 'failed to move', old, name); + callback(); + }); } that.cacheVideo = function(id, callback) {