*remove debug

This commit is contained in:
Derrick Hammer 2023-04-06 17:46:21 -04:00
parent 44a9838490
commit 86a3881cfb
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 0 additions and 11 deletions

View File

@ -423,17 +423,6 @@ async function handleSyncProtomux(aq: ActiveQuery) {
aq.reject("action required");
return;
}
if (!("data" in aq.callerInput)) {
aq.reject("data required");
return;
}
if (isNaN(parseInt(aq.callerInput))) {
aq.reject("data must be a number");
return;
}
debugger;
const mux = Protomux.from(socket);
let mutex: Mutex | null = null;