Fix non downloaded videos
All checks were successful
Push image to registry / build-image (push) Successful in 4m56s

This commit is contained in:
2025-06-09 18:30:38 +02:00
parent 20fca31ced
commit 7054597696

View File

@ -172,6 +172,10 @@ class InstagramRepostJob extends BrowserJob implements ShouldBeUniqueUntilProces
$reel = $infos[0];
$videoInfo = $infos[1];
if ($videoInfo === null) {
continue; // Skip this reel if it failed to download
}
$repostSuccess = false;
do {
$repostSuccess = $this->repostReel($browser, $reel, $videoInfo);