This commit is contained in:
Izuco 2021-11-28 14:59:42 +01:00
parent d262972817
commit a2070aa16d
No known key found for this signature in database
GPG key ID: 318460063D70949F
2 changed files with 3 additions and 4 deletions

View file

@ -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) => {

View file

@ -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]+/);