Fix spelling

This commit is contained in:
Jordan Eldredge 2025-12-26 11:26:10 -08:00
parent 88464a0bb7
commit 7f43b174f5
2 changed files with 3 additions and 3 deletions

View file

@ -457,7 +457,7 @@ program
);
const md5s = rows.map((row) => row.md5);
console.log(md5s.length);
console.log(await Skins.updateSearchIndexs(ctx, md5s));
console.log(await Skins.updateSearchIndexes(ctx, md5s));
}
if (refreshContentHash) {
const ctx = new UserContext();

View file

@ -254,7 +254,7 @@ async function getSearchIndexes(
);
}
export async function updateSearchIndexs(
export async function updateSearchIndexes(
ctx: UserContext,
md5s: string[]
): Promise<any> {
@ -276,7 +276,7 @@ export async function updateSearchIndex(
ctx: UserContext,
md5: string
): Promise<any | null> {
return updateSearchIndexs(ctx, [md5]);
return updateSearchIndexes(ctx, [md5]);
}
export async function hideSkin(md5: string): Promise<void> {