In
util.js, function getMapOverlayFiles, the file filter is bugged at line 5303 :
if (!f.isDirectory()) return false;
makes the filter to
reject all plain files
I suppose that the initial intent was to reject folders and let the following lines to reject unwanted files. so the correct line would be:
if (f.isDirectory()) return false;
See in Tiger 6.1.2
Edited by: phil44 on 26 Dec 2024, 09:08 (title clarification)