Fix attribute parsing bug

This commit is contained in:
Vanilagy
2026-04-27 17:12:28 +02:00
parent 0e721daefd
commit cf8cea2957
+1 -1
View File
@@ -57,7 +57,7 @@ export class AttributeList {
}
if (key) {
this._attributes[key.toLowerCase()] = value;
this._attributes[key.trim().toLowerCase()] = value;
}
}