Fixed misleading variable name

This commit is contained in:
Emi Simpson 2019-12-05 19:02:11 -05:00
parent d3956a7905
commit ebbf755e09
No known key found for this signature in database
GPG Key ID: 68FAB2E2E6DFC98B
1 changed files with 2 additions and 2 deletions

View File

@ -129,7 +129,7 @@ pub fn walk_and_embed_assets(
let href_full_url: String =
resolve_url(&url, &attr.value.to_string())
.unwrap_or(EMPTY_STRING.clone());
let (css_dataurl, _) = retrieve_asset(
let (css, _) = retrieve_asset(
cache,
&href_full_url,
false,
@ -143,7 +143,7 @@ pub fn walk_and_embed_assets(
let css_resolved = resolve_css_imports(
cache,
&css_dataurl,
&css,
&href_full_url,
opt_user_agent,
opt_silent,