Skip to content

Commit fbd8eb7

Browse files
committed
fix method
1 parent 5147d32 commit fbd8eb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/actor/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export function createExpressApp(
6565
res.status(200).end();
6666
});
6767

68-
app.head(Routes.WELL_KNOWN_OAUTH_AUTHORIZATION_SERVER, async (_req: Request, res: Response) => {
68+
app.get(Routes.WELL_KNOWN_OAUTH_AUTHORIZATION_SERVER, async (_req: Request, res: Response) => {
6969
// The endpoint is the same
7070
const response = await fetch(`${authorizationServer}${Routes.WELL_KNOWN_OAUTH_AUTHORIZATION_SERVER}`);
7171
const data = await response.json();

0 commit comments

Comments
 (0)