make sure image onebox is case insensitive
This commit is contained in:
parent
b7d3b52e4f
commit
3909f93a7e
|
@ -3,7 +3,7 @@ require_dependency 'oneboxer/base_onebox'
|
|||
module Oneboxer
|
||||
class ImageOnebox < BaseOnebox
|
||||
|
||||
matcher /^https?:\/\/.*\.(jpg|png|gif|jpeg)$/
|
||||
matcher /^(https?:)?\/\/.+\.(png|jpg|jpeg|gif|bmp|tif|tiff)$/i
|
||||
|
||||
def onebox
|
||||
Oneboxer::BaseOnebox.image_html(@url, nil, @url)
|
||||
|
|
|
@ -163,7 +163,7 @@ module PrettyText
|
|||
def self.apply_cdn(html, url)
|
||||
return html unless url
|
||||
|
||||
image = /\.(jpg|jpeg|gif|png|tiff|tif|bmp)$/
|
||||
image = /\.(png|jpg|jpeg|gif|bmp|tif|tiff)$/i
|
||||
relative = /^\/[^\/]/
|
||||
|
||||
doc = Nokogiri::HTML.fragment(html)
|
||||
|
|
Loading…
Reference in New Issue