mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 02:15:01 +00:00
Fix spelling
This commit is contained in:
parent
88464a0bb7
commit
7f43b174f5
2 changed files with 3 additions and 3 deletions
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue