This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

bug: fix api not resolving sub

+3 -1
+3 -1
src/index.ts
··· 59 59 development: environment === "dev", 60 60 async fetch(request: Request) { 61 61 const url = new URL(request.url); 62 - const path = url.pathname; 62 + const path = url.pathname.split("/").filter(Boolean)[0] 63 + ? `/${url.pathname.split("/").filter(Boolean)[0]}` 64 + : "/"; 63 65 64 66 switch (path) { 65 67 case "/":