Remove debug statements
All checks were successful
CI / Test and lint (push) Successful in 16s
CI / Test and lint (pull_request) Successful in 16s

This commit is contained in:
Râu Cao 2024-12-03 18:50:40 +01:00
parent f4d1ba897b
commit 8e802f314a
Signed by: raucao
GPG Key ID: 37036C356E56CC51
2 changed files with 0 additions and 2 deletions

View File

@ -9,7 +9,6 @@ const nprofileHandler = async function (ctx: Context) {
try {
data = nip19.decode(nprofile).data as nip19.ProfilePointer;
console.log(data);
} catch (_e) {
notFoundHandler(ctx);
return;

View File

@ -85,7 +85,6 @@ router.get("/:username/:identifier", async (ctx) => {
});
router.get("/assets/:path*", async (ctx) => {
console.log(import.meta.dirname);
try {
let filePath = ctx.params.path || "";
let root: string;