Unverified Commit 78f071ee authored by Hong Minhee's avatar Hong Minhee
Browse files

Fix fedi handle on `fedify inbox` web

parent 2073b445
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -374,7 +374,8 @@ function printActivityEntry(idx: number, entry: ActivityEntry): void {
function getHandle<T extends string>(
  c: HonoContext<BlankEnv, T, BlankInput>,
): string {
  return `@i@${c.req.url}`;
  const url = new URL(c.req.url);
  return `@i@${url.host}`;
}

const app = new Hono();