Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Commit 6e609ac

Browse files
committed
fix URI path
1 parent f6dc56a commit 6e609ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ app.get("/dango", (_: unknown, res: Response) => {
3131
app.get("/shows", returnAllShows);
3232
app.get("/shows/:showId", returnRequestedShow);
3333
app.get("/shows/:showId/raw", returnRequestedShow);
34-
app.get("/shows/:showId/:episodeId/chapters", returnRequestedEpisodeChapters);
34+
app.get("/shows/:showId/episodes/:episodeId/chapters", returnRequestedEpisodeChapters);
3535

3636
app.listen(8080);

0 commit comments

Comments
 (0)