Skip to content

Commit 3859fc0

Browse files
committed
Move images to different folder
1 parent 82efce2 commit 3859fc0

55 files changed

Lines changed: 1 addition & 1 deletion

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/lib/server/captcha.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export const getRandomCaptcha = async (exclude?: string) => {
6060
const captcha = filteredCaptchas[Math.floor(Math.random() * filteredCaptchas.length)];
6161
const unshuffledImages = Array.from({ length: 9 }, (_, i) => ({
6262
id: i,
63-
url: `/captcha/images/${captcha.name}/${i}.png`,
63+
url: `/captchas/${captcha.name}/${i}.png`,
6464
}));
6565

6666
return {

0 commit comments

Comments
 (0)