forked from 0x2620/pandora
log move error
This commit is contained in:
parent
2ae32cc2f0
commit
c743ad7a71
1 changed files with 4 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue