Loop until it found a threads

This commit is contained in:
loicbersier 2019-12-24 19:09:06 +01:00
parent 1ea32f53a6
commit fd6c1b57c5

View file

@ -44,6 +44,11 @@ class FourchanCommand extends Command {
i = Math.floor((Math.random() * response.threads.length) + 1);
// Loop until it found a threads
while(!response.threads[i]) {
i = Math.floor((Math.random() * response.threads.length) + 1);
}
// If post is sticky search again
while(response.threads[i].posts[0].sticky == 1 || !response.threads[i].posts) {
i = Math.floor((Math.random() * response.threads.length));