From 0ffa62f57fe14cc8751e123ec28c5de20a3129a3 Mon Sep 17 00:00:00 2001 From: jeff-zucker Date: Mon, 26 Feb 2024 13:34:59 -0800 Subject: [PATCH] disallow files starting with . or # in container listings --- file/src/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/file/src/index.js b/file/src/index.js index 5cc441d..d04fd2a 100644 --- a/file/src/index.js +++ b/file/src/index.js @@ -91,7 +91,6 @@ export class SolidRestFile { for (var f in files) { if(files[f].startsWith('.')) continue; if(files[f].startsWith('#')) continue; -console.log(files[f]); if(!pathname.endsWith('/')) pathname = pathname + "/"; newFiles.push(await this.getItemInfo(pathname + files[f])); }