1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-01-13 10:50:27 +00:00

Make the file store ignore OS X DS_Store files

This commit is contained in:
Jeremy Ruston 2012-04-03 15:05:26 +01:00
parent 0cfef8affa
commit 45dcb4f8e9

View File

@ -67,7 +67,7 @@ function FileStore(dirpath,store,callback) {
} else {
for(var t=0; t<files.length; t++) {
var f = files[t];
if(f !== ".." && f !== "." && f.indexOf(".meta") !== f.length-5) {
if(["..",".",".DS_Store"].indexOf(f) === -1 && f.indexOf(".meta") !== f.length-5) {
self.loadQueue.push({
filepath: path.resolve(self.dirpath,f)
});