mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
add Twitter labels only if both properties are present
This commit is contained in:
parent
ea0e238ae1
commit
850838147a
|
@ -146,12 +146,9 @@ module ApplicationHelper
|
|||
end
|
||||
end
|
||||
|
||||
if opts[:read_time] && opts[:read_time] > 0
|
||||
if opts[:read_time] && opts[:read_time] > 0 && opts[:like_count] && opts[:like_count] > 0
|
||||
result << tag(:meta, name: 'twitter:label1', value: I18n.t("reading_time"))
|
||||
result << tag(:meta, name: 'twitter:data1', value: "#{opts[:read_time]} mins 🕑")
|
||||
end
|
||||
|
||||
if opts[:like_count] && opts[:like_count] > 0
|
||||
result << tag(:meta, name: 'twitter:label2', value: I18n.t("likes"))
|
||||
result << tag(:meta, name: 'twitter:data2', value: "#{opts[:like_count]} ❤")
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user