* Description for the sraw (--show-raw) command now properly capitalized and is "Get Raw Show data"
* allShows variable switched to const from let
This commit is contained in:
Burve 2025-06-16 01:25:59 +03:00
parent be7407fe49
commit c0d703def6
2 changed files with 3 additions and 3 deletions

View file

@ -312,7 +312,7 @@ export default class Crunchy implements ServiceClass {
useProxy: true
};
let allShows: any[] = [];
const allShows: any[] = [];
let page = 1;
let hasMorePages = true;

View file

@ -148,7 +148,7 @@ const args: TAppArg<boolean|number|string|unknown[]>[] = [
group: 'dl',
alias: 'sraw',
name: 'show-raw',
describe: 'get raw show data',
describe: 'Get Raw Show data',
docDescribe: true,
service: ['crunchy'],
type: 'string',
@ -168,7 +168,7 @@ const args: TAppArg<boolean|number|string|unknown[]>[] = [
group: 'dl',
alias: 'slraw',
name: 'show-list-raw',
describe: 'Get Raw show list data',
describe: 'Get Raw Show list data',
docDescribe: true,
service: ['crunchy'],
type: 'boolean',