fix: incorrect API used in validation
This commit is contained in:
parent
7a46f31d7f
commit
cfd4fc3d21
@ -17,4 +17,4 @@ export default {
|
|||||||
fetch,
|
fetch,
|
||||||
} satisfies Deno.ServeDefaultExport;
|
} satisfies Deno.ServeDefaultExport;
|
||||||
|
|
||||||
export const VERSION = "0.2.3";
|
export const VERSION = "0.2.4";
|
@ -47,7 +47,7 @@ export const getSnapshotsHanlder = createHandlers(async (c: ContextType) => {
|
|||||||
if (videoId.startsWith("av")) {
|
if (videoId.startsWith("av")) {
|
||||||
videoId = parseInt(videoId.slice(2));
|
videoId = parseInt(videoId.slice(2));
|
||||||
}
|
}
|
||||||
else if (await number().validate(videoId)) {
|
else if (await number().isValid(videoId)) {
|
||||||
videoId = parseInt(videoId);
|
videoId = parseInt(videoId);
|
||||||
}
|
}
|
||||||
const queryParams = await SnapshotQueryParamsSchema.validate(c.req.query());
|
const queryParams = await SnapshotQueryParamsSchema.validate(c.req.query());
|
||||||
|
Loading…
Reference in New Issue
Block a user