~cytrogen/masto-fe

2dfa8f797a50364268c0e8434e37a29f9eeb652c — Claire 2 years ago 394d1f1
Fix LinkCrawlWorker crashing on `null` `created_at` (#26151)

1 files changed, 1 insertions(+), 1 deletions(-)

M app/lib/link_details_extractor.rb
M app/lib/link_details_extractor.rb => app/lib/link_details_extractor.rb +1 -1
@@ 124,7 124,7 @@ class LinkDetailsExtractor
      author_url: author_url || '',
      embed_url: embed_url || '',
      language: language,
      created_at: published_at,
      created_at: published_at.presence || Time.now.utc,
    }
  end