From 7aef03a7cd5c054c278d1f14bab0919478e772d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Z=C3=BCrcher?= Date: Wed, 21 Jan 2026 09:04:00 +0100 Subject: [PATCH] remove comment --- handlers/files.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers/files.go b/handlers/files.go index 179786d..db12f4c 100644 --- a/handlers/files.go +++ b/handlers/files.go @@ -73,7 +73,7 @@ func DeleteHandler(w http.ResponseWriter, r *http.Request) { // 2. Delete each file for _, name := range filenames { - fullPath := filepath.Join(uploadDir, filepath.Base(name)) // Base() for security + fullPath := filepath.Join(uploadDir, filepath.Base(name)) os.Remove(fullPath) }