Merge branch 'master' into ignore-ca
This commit is contained in:
commit
2251c086c2
1 changed files with 8 additions and 1 deletions
|
@ -299,7 +299,14 @@ pub fn walk_and_embed_assets(
|
||||||
"iframe" => {
|
"iframe" => {
|
||||||
for attr in attrs_mut.iter_mut() {
|
for attr in attrs_mut.iter_mut() {
|
||||||
if &attr.name.local == "src" {
|
if &attr.name.local == "src" {
|
||||||
let src_full_url: String = resolve_url(&url, &attr.value.to_string())
|
let value = attr.value.to_string();
|
||||||
|
// Ignore iframes with empty source (they cause infinite loops)
|
||||||
|
if value == EMPTY_STRING.clone() {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
let src_full_url: String = resolve_url(&url, &value)
|
||||||
.unwrap_or(EMPTY_STRING.clone());
|
.unwrap_or(EMPTY_STRING.clone());
|
||||||
let iframe_data = retrieve_asset(
|
let iframe_data = retrieve_asset(
|
||||||
&src_full_url,
|
&src_full_url,
|
||||||
|
|
Loading…
Reference in a new issue