提交 110f5a16 编写于 作者: D Douwe Maan

Catch all URI errors in ExternalLinkFilter

上级 b46b52af
---
title: Catch all URI errors in ExternalLinkFilter
merge_request:
author:
......@@ -24,7 +24,7 @@ module Banzai
def uri(href)
URI.parse(href)
rescue URI::InvalidURIError
rescue URI::Error
nil
end
......
......@@ -55,6 +55,13 @@ describe Banzai::Filter::ExternalLinkFilter, lib: true do
expect(doc.to_html).to eq(expected)
end
it 'skips improperly formatted mailtos' do
doc = filter %q(<p><a href="mailto://jblogs@example.com">Email</a></p>)
expected = %q(<p><a href="mailto://jblogs@example.com">Email</a></p>)
expect(doc.to_html).to eq(expected)
end
end
context 'for links with a username' do
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册