From 537b651c973c74c451ad941791c5610911718cad Mon Sep 17 00:00:00 2001 From: ulrich Date: Thu, 14 Nov 2024 11:07:08 +0000 Subject: [PATCH] Aenderungen an fm eingebaut --- src/de/uhilger/neon/fm/FileManipulator.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/de/uhilger/neon/fm/FileManipulator.java b/src/de/uhilger/neon/fm/FileManipulator.java index a9aebda..88bdedd 100644 --- a/src/de/uhilger/neon/fm/FileManipulator.java +++ b/src/de/uhilger/neon/fm/FileManipulator.java @@ -84,12 +84,12 @@ } break; case P_ZIP: - String path = exchange.getRequestURI().toString(); - zipAntwort(exchange, new Deflator().packFolder(fileName, path, base)); + //String path = exchange.getRequestURI().toString(); + zipAntwort(exchange, new Deflator().packFolder(fileName, /*path, */base)); break; case P_UNZIP: - path = exchange.getRequestURI().toString(); - zipAntwort(exchange, new Inflator().extractZipfile(fileName, path, base)); + //String path = exchange.getRequestURI().toString(); + zipAntwort(exchange, new Inflator().extractZipfile(fileName, /*path,*/ base)); break; default: antwort(exchange, HttpResponder.SC_NOT_FOUND, "ungueltige Anfrage"); -- Gitblit v1.9.3