Fix icon-fetch error

Signed-off-by: BlackDex <black.dex@gmail.com>
This commit is contained in:
BlackDex 2025-12-19 16:14:23 +01:00
parent 77d75d4c48
commit 6d06047020
No known key found for this signature in database
GPG key ID: 58C80A2AA6C765E1
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View file

@ -920,9 +920,9 @@ dependencies = [
[[package]]
name = "cc"
version = "1.2.49"
version = "1.2.50"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c"
dependencies = [
"find-msvc-tools",
"jobserver",

View file

@ -798,7 +798,7 @@ impl Emitter for FaviconEmitter {
self.flush_current_attribute(true);
self.last_start_tag.clear();
match &self.current_token {
Some(token) if token.closing => {
Some(token) if !token.closing => {
self.last_start_tag.extend(&*token.tag.name);
}
_ => {}