about summary refs log tree commit diff
path: root/app/workers/link_crawl_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/link_crawl_worker.rb')
-rw-r--r--app/workers/link_crawl_worker.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/workers/link_crawl_worker.rb b/app/workers/link_crawl_worker.rb
index b3d8aa264..32e51537d 100644
--- a/app/workers/link_crawl_worker.rb
+++ b/app/workers/link_crawl_worker.rb
@@ -6,7 +6,8 @@ class LinkCrawlWorker
   sidekiq_options queue: 'pull', retry: 0
 
   def perform(status_id)
-    FetchLinkCardService.new.call(Status.find(status_id))
+    status = Status.find(status_id)
+    FetchLinkCardService.new.call(status) if status.published?
   rescue ActiveRecord::RecordNotFound
     true
   end