fix(css-parser): don't save unusable rules to RAM (#2604)

This commit is contained in:
Phạm Bình An
2026-07-14 17:00:13 +03:00
committed by GitHub
parent 94ae750e89
commit e84840b473
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -33,7 +33,7 @@
class CssParser {
public:
// Bump when CSS cache format or rules change; section caches are invalidated when this changes
static constexpr uint8_t CSS_CACHE_VERSION = 7;
static constexpr uint8_t CSS_CACHE_VERSION = 8;
explicit CssParser(std::string cachePath) : cachePath(std::move(cachePath)) {}
~CssParser() = default;