diff --git a/lib/jekyll-seo-tag/json_ld_drop.rb b/lib/jekyll-seo-tag/json_ld_drop.rb index a8122ea0..457953fe 100644 --- a/lib/jekyll-seo-tag/json_ld_drop.rb +++ b/lib/jekyll-seo-tag/json_ld_drop.rb @@ -28,7 +28,7 @@ def initialize(page_drop) def fallback_data { - "@context" => "http://schema.org", + "@context" => "https://schema.org", } end diff --git a/spec/jekyll_seo_tag/json_ld_drop_spec.rb b/spec/jekyll_seo_tag/json_ld_drop_spec.rb index 1c1b28b5..fd83c1bf 100644 --- a/spec/jekyll_seo_tag/json_ld_drop_spec.rb +++ b/spec/jekyll_seo_tag/json_ld_drop_spec.rb @@ -35,7 +35,7 @@ it "returns the context" do expect(subject).to have_key("@context") - expect(subject["@context"]).to eql("http://schema.org") + expect(subject["@context"]).to eql("https://schema.org") end it "returns the type" do