Skip to content

Commit 39168b4

Browse files
committed
Use HTTPS for schema.org requests
1 parent 18d0473 commit 39168b4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/helpers/schema_org_helper.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
module SchemaOrgHelper
22
def meta_person_schema_url
3-
'http://schema.org/Person'
3+
'https://schema.org/Person'
44
end
55

66
def meta_address_schema_url
7-
'http://schema.org/Address'
7+
'https://schema.org/Address'
88
end
99

1010
def meta_article_schema_url
11-
'http://schema.org/TechArticle'
11+
'https://schema.org/TechArticle'
1212
end
1313

1414
def meta_comment_schema_url
15-
'http://schema.org/Comment'
15+
'https://schema.org/Comment'
1616
end
1717
end

0 commit comments

Comments
 (0)