Merge branch 'master' into site-authors-array
This commit is contained in:
commit
6197b2e7a8
|
@ -1,6 +1,7 @@
|
|||
## HEAD
|
||||
|
||||
* Use canonical_url specified in page if present #211
|
||||
* Fix for image.path causing an invalid url error #228
|
||||
|
||||
## 2.2.3
|
||||
|
||||
|
|
|
@ -168,7 +168,8 @@ module Jekyll
|
|||
image["path"] ||= image["facebook"] || image["twitter"]
|
||||
return @image = nil unless image["path"]
|
||||
|
||||
unless absolute_url? image["path"]
|
||||
# absolute_url? will return nil for an invalid URL
|
||||
if absolute_url?(image["path"]) == false
|
||||
image["path"] = filters.absolute_url image["path"]
|
||||
end
|
||||
|
||||
|
|
|
@ -572,7 +572,7 @@ RSpec.describe Jekyll::SeoTag::Drop do
|
|||
let(:image) { ":" }
|
||||
|
||||
it "returns nil" do
|
||||
expect(subject.image["path"]).to eql("/:")
|
||||
expect(subject.image["path"]).to eql(":")
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue