[CodeFactor] Apply fixes

pull/75/head
codefactor-io 2021-03-04 10:54:59 +00:00
parent 75345718be
commit f29c1d91b8
2 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ import { urls } from "../constants/url.js";
/**
* Gets the URLs of the latest handiworks that match the passed parameters.
*
*
* You *must* be logged.
* @param {LatestSearchQuery} query
* Query used for the search

View File

@ -19,11 +19,11 @@ import { IQuery } from "../interfaces.js";
export default async function getURLsFromQuery(query: IQuery, limit: number = 30): Promise<string[]> {
switch (query.itype) {
case "HandiworkSearchQuery":
return await fetchHandiworkURLs(query as HandiworkSearchQuery, limit);
return fetchHandiworkURLs(query as HandiworkSearchQuery, limit);
case "LatestSearchQuery":
return await fetchLatestHandiworkURLs(query as LatestSearchQuery, limit);
return fetchLatestHandiworkURLs(query as LatestSearchQuery, limit);
case "ThreadSearchQuery":
return await fetchThreadHandiworkURLs(query as ThreadSearchQuery, limit);
return fetchThreadHandiworkURLs(query as ThreadSearchQuery, limit);
default:
throw Error(`Invalid query type: ${query.itype}`);
}