diff --git a/reader/sanitizer/sanitizer.go b/reader/sanitizer/sanitizer.go
index d86fa64b..89df6851 100644
--- a/reader/sanitizer/sanitizer.go
+++ b/reader/sanitizer/sanitizer.go
@@ -19,7 +19,7 @@ import (
var (
youtubeEmbedRegex = regexp.MustCompile(`//www\.youtube\.com/embed/(.*)`)
- splitSrcsetRegex = regexp.MustCompile(`,\s+`)
+ splitSrcsetRegex = regexp.MustCompile(`,\s?`)
)
// Sanitize returns safe HTML.
@@ -457,13 +457,9 @@ func sanitizeSrcsetAttr(baseURL, value string) string {
nbParts := len(parts)
if nbParts > 0 {
- sanitizedSource := parts[0]
- if !strings.HasPrefix(parts[0], "data:") {
- var err error
- sanitizedSource, err = url.AbsoluteURL(baseURL, parts[0])
- if err != nil {
- continue
- }
+ sanitizedSource, err := url.AbsoluteURL(baseURL, parts[0])
+ if err != nil {
+ continue
}
if nbParts == 2 && isValidWidthOrDensityDescriptor(parts[1]) {
diff --git a/reader/sanitizer/sanitizer_test.go b/reader/sanitizer/sanitizer_test.go
index 72729b37..fedb98ee 100644
--- a/reader/sanitizer/sanitizer_test.go
+++ b/reader/sanitizer/sanitizer_test.go
@@ -45,16 +45,6 @@ func TestImgWithSrcset(t *testing.T) {
}
}
-func TestImgWithSrcsetAndDataURL(t *testing.T) {
- input := ``
- expected := `
`
- output := Sanitize("http://example.org/", input)
-
- if output != expected {
- t.Errorf(`Wrong output: %s`, output)
- }
-}
-
func TestSourceWithSrcsetAndMedia(t *testing.T) {
input := `
`
+ expected := `
`
+ output := Sanitize("http://example.org/", input)
+
+ if output != expected {
+ t.Errorf(`Wrong output: %s`, output)
+ }
+}
+
func TestSelfClosingTags(t *testing.T) {
input := `
This
is a text
with an image: .