Make sure all the elements in RECENTPADS are non-null objects

pull/1/head
yflory 2017-02-16 16:07:43 +01:00
parent 92050eb04f
commit 97762f9f9a
1 changed files with 1 additions and 1 deletions

View File

@ -866,7 +866,7 @@ define([
var trashFiles = getTrashFiles();
var toClean = [];
fd.forEach(function (el, idx) {
if (typeof(el) !== "object") {
if (!el || typeof(el) !== "object") {
debug("An element in filesData was not an object.", el);
toClean.push(el);
return;