2 Commits

Author SHA1 Message Date
25b5b1be27 Merge branch 'jobs/instagram-repost/ai-description'
Some checks failed
Push image to registry / build-image (push) Failing after 1m23s
2025-06-30 16:14:57 +02:00
7054597696 Fix non downloaded videos
All checks were successful
Push image to registry / build-image (push) Successful in 4m56s
2025-06-09 18:30:38 +02:00

View File

@ -185,6 +185,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);