Skip to content

Commit 5badcb0

Browse files
authored
fix: add 'return' statement (#8)
1 parent 7209147 commit 5badcb0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/buildRouter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export const buildRouter = async (
8181
reply.type('text/html');
8282
}
8383
if (html) {
84-
reply.send(html);
84+
return reply.send(html);
8585
}
8686
};
8787

0 commit comments

Comments
 (0)