Fix 'search.oldLocation is undefined' error

This commit is contained in:
yflory 2017-03-28 14:26:41 +02:00
parent 869cf09630
commit 7ede430db3

View File

@ -1783,7 +1783,7 @@ define([
var isInSearchTmp = currentPath[0] === SEARCH;
if ($input.val().trim() === "") {
setSearchCursor(0);
if (search.oldLocation.length) { displayDirectory(search.oldLocation); }
if (search.oldLocation && search.oldLocation.length) { displayDirectory(search.oldLocation); }
return;
}
if (e.which === 13) {