Fixes missing space when converting srcset to use absolute URLs (#40)

* Fixes missing space when converting srcset to use absolute URLs

* Fix integration snapshot
This commit is contained in:
Jason Barry
2020-08-04 19:09:59 -07:00
committed by GitHub
parent f7d43f5fee
commit db28bc4428
2 changed files with 2 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ function getAbsoluteSrcsetString(doc: Document, attributeValue: string) {
}
return '';
})
.join(',');
.join(', ');
return resultingSrcsetString;
}