Optimize CSS selectors

This commit is contained in:
redphx
2025-02-05 17:29:21 +07:00
parent e45537adf0
commit 5ce7ade574
6 changed files with 45 additions and 53 deletions

View File

@@ -744,16 +744,8 @@ true` + text;
// Don't render "All Games" sections
ignoreAllGamesSection(str: string) {
let index = str.indexOf('className:"AllGamesRow-module__allGamesRowContainer');
if (index < 0) {
return false;
}
index = PatcherUtils.indexOf(str, 'grid:!0,', index, 1500);
if (index < 0) {
return false;
}
index = PatcherUtils.lastIndexOf(str, '(0,', index, 70);
index > -1 && (index = PatcherUtils.indexOf(str, 'grid:!0,', index, 1500));
index > -1 && (index = PatcherUtils.lastIndexOf(str, '(0,', index, 70));
if (index < 0) {
return false;
}