We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbe4781 commit c73b4a0Copy full SHA for c73b4a0
src/index.js
@@ -4,7 +4,7 @@ const path = require('path');
4
5
async function getImageUrlFull() {
6
const imageUrl = 'https://raw.githubusercontent.com/Sstudios-Dev/image-core/main/src/img/';
7
- const randomNumber = Math.floor(Math.random() * 46) + 1; // Assuming there are 1000 images
+ const randomNumber = Math.floor(Math.random() * 60) + 1; // Assuming there are 1000 images
8
const imageName = `img-core${randomNumber}.jpg`;
9
return { imageUrlFull: `${imageUrl}${imageName}?raw=true`, imageName };
10
}
0 commit comments