瀏覽代碼

Fix preview card image not being re-fetched even if link is re-posted (#11981)

Fix #11956
master^2
Eugen Rochko 4 年之前
committed by GitHub
父節點
當前提交
3ec80c7aec
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 2 個檔案被更改,包括 5 行新增1 行删除
  1. +4
    -0
      app/models/preview_card.rb
  2. +1
    -1
      app/services/fetch_link_card_service.rb

+ 4
- 0
app/models/preview_card.rb 查看文件

@@ -47,6 +47,10 @@ class PreviewCard < ApplicationRecord

before_save :extract_dimensions, if: :link?

def missing_image?
width.present? && height.present? && image_file_name.blank?
end

def save_with_optional_image!
save!
rescue ActiveRecord::RecordInvalid


+ 1
- 1
app/services/fetch_link_card_service.rb 查看文件

@@ -22,7 +22,7 @@ class FetchLinkCardService < BaseService
RedisLock.acquire(lock_options) do |lock|
if lock.acquired?
@card = PreviewCard.find_by(url: @url)
process_url if @card.nil? || @card.updated_at <= 2.weeks.ago
process_url if @card.nil? || @card.updated_at <= 2.weeks.ago || @card.missing_image?
else
raise Mastodon::RaceConditionError
end


Loading…
取消
儲存