From 4674f1ec742d6c66648c5f207f7341af20066d56 Mon Sep 17 00:00:00 2001
From: alex <alex@alexloehr.net>
Date: Mon, 16 Jun 2025 14:00:00 +0000
Subject: [PATCH] GS-1843

---
 lib/libIlias.js |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/libIlias.js b/lib/libIlias.js
index 6d608f5..d20ec5e 100644
--- a/lib/libIlias.js
+++ b/lib/libIlias.js
@@ -17,12 +17,13 @@
    const sp = new URLSearchParams({
       command: "deleteUser",
       obj_id,
+      // dry: "1",
       dry: dry ? "1" : "0",
    })
    let url2 = `${url}?${sp.toString()}`
-   console.log("libIlias.deleteUser >>>", url2)
    const res = await fetch(url2, {method: "DELETE"})
-   return await res.json()
+   const data = await res.json()
+   return data //
 }
 
 async function deleteTeilnahme (ref_id, usr_id, dry = false) {

--
Gitblit v1.8.0