瀏覽代碼

microformat mentions can have an implicit property (#12189)

See the first example here: http://microformats.org/wiki/microformats2#hyperlinked_person
master^2
nightpool 4 年之前
committed by Eugen Rochko
父節點
當前提交
9762fe382c
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      app/services/fetch_link_card_service.rb

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

@@ -84,7 +84,7 @@ class FetchLinkCardService < BaseService

def skip_link?(a)
# Avoid links for hashtags and mentions (microformats)
a['rel']&.include?('tag') || a['class']&.include?('u-url') || mention_link?(a)
a['rel']&.include?('tag') || a['class']&.match?(/u-url|h-card/) || mention_link?(a)
end

def attempt_oembed


Loading…
取消
儲存