Skip to content

Commit 2ef8e1e

Browse files
authored
Update script.js
1 parent 8ff4ba3 commit 2ef8e1e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

script.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1198,7 +1198,7 @@ function parseAssetDisplay(filename, arch, fileType) {
11981198
const stopIndex = stopIndexCandidates.length > 0 ? Math.min(...stopIndexCandidates) : tokens.length;
11991199
const preMetaTokens = tokens.slice(0, stopIndex);
12001200

1201-
const knownPatchTokens = new Set(['revanced', 'morphe', 'anddea', 'piko']);
1201+
const knownPatchTokens = new Set(['revanced', 'morphe', 'anddea']);
12021202
const variantKeywords = new Set(['exp', 'nord', 'mocha', 'privacy', 'materialu']);
12031203

12041204
let patchStartIndex = preMetaTokens.findIndex(token => knownPatchTokens.has(token.toLowerCase()));
@@ -1252,8 +1252,7 @@ function formatBrandDisplayName(value) {
12521252
exp: 'Experimental',
12531253
mocha: 'Mocha Theme',
12541254
nord: 'Nord Theme',
1255-
materialu: 'Material You',
1256-
piko: 'Morphe'
1255+
materialu: 'Material You'
12571256
};
12581257

12591258
return toTitleWords(value)

0 commit comments

Comments
 (0)