mirror of
https://github.com/anidl/multi-downloader-nx.git
synced 2026-04-21 00:12:05 +00:00
Eslint
This commit is contained in:
parent
d262972817
commit
a2070aa16d
2 changed files with 3 additions and 4 deletions
|
|
@ -462,12 +462,12 @@ async function parseObject(item: ParseItem, pad?: number, getSeries?: boolean, g
|
|||
if(item.type == 'series' && getSeries){
|
||||
argv.series = item.id;
|
||||
await getSeriesById(pad, true);
|
||||
console.log()
|
||||
console.log();
|
||||
}
|
||||
if(item.type == 'movie_listing' && getMovieListing){
|
||||
argv['movie-listing'] = item.id;
|
||||
await getMovieListingById(pad+2);
|
||||
console.log()
|
||||
console.log();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -947,7 +947,6 @@ const itemSelectMultiDub = (eps: Record<string, {
|
|||
const epNumList: {
|
||||
sp: number
|
||||
} = { sp: 0 };
|
||||
const epNumLen = doEpsFilter.values.length;
|
||||
for (const key of Object.keys(eps)) {
|
||||
const itemE = eps[key];
|
||||
itemE.items.forEach((item, index) => {
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ const parseSelect = (selectString: string, but = false) : {
|
|||
return {
|
||||
values: select,
|
||||
isSelected: (st) => {
|
||||
if (typeof st === "string")
|
||||
if (typeof st === 'string')
|
||||
st = [st];
|
||||
return st.some(st => {
|
||||
const match = st.match(/[A-Za-z]+/);
|
||||
|
|
|
|||
Loading…
Reference in a new issue