wow when did that break

This commit is contained in:
ed 2022-04-29 23:37:38 +02:00
parent 0d9567575a
commit 1ea145b384

View file

@ -666,7 +666,7 @@ function ft2dict(tr) {
for (var a = 1, aa = th.length; a < aa; a++) {
var tv = tr.cells[a].textContent,
tk = a == 1 ? 'file' : th[a].getAttribute('name').split('/').pop(),
tk = a == 1 ? 'file' : th[a].getAttribute('name').split('/').pop().toLowerCase(),
vis = th[a].className.indexOf('min') === -1;
if (!tv)
@ -1913,9 +1913,6 @@ var fileman = (function () {
if (!md.hasOwnProperty(k))
continue;
md[k.toLowerCase()] = md[k];
k = k.toLowerCase();
if (k.startsWith('.'))
md[k.slice(1)] = md[k];
}