fixed panorama recursion freeze

This commit is contained in:
Václav Šmejkal 2023-06-02 09:55:42 +02:00
parent 6c07f45a52
commit a430243240
Signed by: ENGO150
GPG Key ID: F6D6DF86242C5A59

View File

@ -26,5 +26,5 @@ function change_slideshow_img()
last_index = random_index; last_index = random_index;
setTimeout(change_slideshow_img, 3000); setTimeout(function() {change_slideshow_img()}, 3000);
} }