disable filters - too slow
authorIan Beckwith <ianb@erislabs.net>
Sun, 17 Oct 2010 01:44:14 +0000 (02:44 +0100)
committerIan Beckwith <ianb@erislabs.net>
Sun, 17 Oct 2010 01:44:14 +0000 (02:44 +0100)
lib/ID3FS/Fuse.pm

index 058b868..50e7060 100644 (file)
@@ -97,7 +97,9 @@ sub getdir
     return(-ENOTDIR()) unless($path->isdir());
     my @dents=();
     my($dirs, $files)=$path->dirents();
-    push(@dents, $path->filter(@$dirs));
+    # too slow
+#    push(@dents, $path->filter(@$dirs));
+    push(@dents, @$dirs);
     push(@dents, @$files);
     if(@dents)
     {