Skip to content

Commit

Permalink
Quick hack to fix blog fetch cron
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobemerick committed Jan 17, 2016
1 parent b28c4e7 commit 017f18a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/cron/fetch-blog-activity.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
foreach ($blogFeed->item as $item) {
$datetime = new DateTime($item->pubDate);
if ($datetime <= $mostRecentBlogDateTime) {
break;
// break;
}

$uniqueBlogCheck = $blogRepository->getBlogByPermalink((string) $item->guid);
Expand Down

0 comments on commit 017f18a

Please sign in to comment.