Skip to content

Commit bff90ed

Browse files
committed
bug fix: parameter not assigned to route - resolved
1 parent 8b3d2a4 commit bff90ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/whatsapp/routers/instance.router.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export function InstanceRouter(
120120

121121
return res.status(HttpStatus.OK).json(response);
122122
})
123-
.put('/refreshToken', async (req, res) => {
123+
.put(routerPath('refreshToken'), async (req, res) => {
124124
const response = await dataValidate<OldToken>({
125125
request: req,
126126
schema: oldTokenSchema,

0 commit comments

Comments
 (0)