Fixed misleading variable name
This commit is contained in:
parent
d3956a7905
commit
ebbf755e09
1 changed files with 2 additions and 2 deletions
|
@ -129,7 +129,7 @@ pub fn walk_and_embed_assets(
|
||||||
let href_full_url: String =
|
let href_full_url: String =
|
||||||
resolve_url(&url, &attr.value.to_string())
|
resolve_url(&url, &attr.value.to_string())
|
||||||
.unwrap_or(EMPTY_STRING.clone());
|
.unwrap_or(EMPTY_STRING.clone());
|
||||||
let (css_dataurl, _) = retrieve_asset(
|
let (css, _) = retrieve_asset(
|
||||||
cache,
|
cache,
|
||||||
&href_full_url,
|
&href_full_url,
|
||||||
false,
|
false,
|
||||||
|
@ -143,7 +143,7 @@ pub fn walk_and_embed_assets(
|
||||||
|
|
||||||
let css_resolved = resolve_css_imports(
|
let css_resolved = resolve_css_imports(
|
||||||
cache,
|
cache,
|
||||||
&css_dataurl,
|
&css,
|
||||||
&href_full_url,
|
&href_full_url,
|
||||||
opt_user_agent,
|
opt_user_agent,
|
||||||
opt_silent,
|
opt_silent,
|
||||||
|
|
Loading…
Add table
Reference in a new issue