Skip to content

Commit cc3aedb

Browse files
jony89jcesarmobile
authored andcommitted
CB-14181: (android) Fix bug - Cannot read property 'filesystemName' of null (#235)
CB-14181: (android) fix: Cannot read property 'filesystemName' of null fix error : Error in Success callbackId: File1539060614 : TypeError: Cannot read property 'filesystemName' of null cordova.js:314 Uncaught TypeError: Cannot read property 'filesystemName' of null The `fsRoot` might be null. reproduced with latest cordova on android emulator. * fix: eslint
1 parent 5e12b5e commit cc3aedb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

www/fileSystems-roots.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ require('./fileSystems').getFs = function (name, callback) {
3030
fsMap = {};
3131
for (var i = 0; i < response.length; ++i) {
3232
var fsRoot = response[i];
33-
var fs = new FileSystem(fsRoot.filesystemName, fsRoot);
34-
fsMap[fs.name] = fs;
33+
if (fsRoot) {
34+
var fs = new FileSystem(fsRoot.filesystemName, fsRoot);
35+
fsMap[fs.name] = fs;
36+
}
3537
}
3638
callback(fsMap[name]);
3739
}

0 commit comments

Comments
 (0)