Merge branch 'soon' into staging

pull/1/head
yflory 2018-07-18 15:10:23 +02:00
commit ef73cf89cd
2 changed files with 2 additions and 1 deletions

View File

@ -645,7 +645,7 @@ define([
}
// Fix href
if (/^https*:\/\//.test(el.href)) { el.href = Hash.getRelativeHref(el.href); }
if (el.href && /^https*:\/\//.test(el.href)) { el.href = Hash.getRelativeHref(el.href); }
// Fix creation time
if (!el.ctime) { el.ctime = el.atime; }
// Fix title

View File

@ -2622,6 +2622,7 @@ define([
sortedFiles.forEach(function (key) {
if (manager.isFolder(root[key])) { return; }
var $element = createElement(path, key, root, false);
if (!$element) { return; }
$element.appendTo($list);
});