This commit is contained in:
jusax23 2023-03-07 20:58:49 +01:00
parent 84745ac2f2
commit abe2e0f09a
Signed by: jusax23
GPG key ID: 499E2AA870C1CD41

View file

@ -57,7 +57,7 @@ const censorLogArg = (arg: any) => {
let out: any = {};
for (let key in arg) {
if (key == "accountKey") out[key] = new Array(arg[key].length).fill("*").join("");
out[key] = censorLogArg(arg[key]);
else out[key] = censorLogArg(arg[key]);
}
return out;
}