mirror of
https://github.com/anidl/multi-downloader-nx.git
synced 2026-05-14 05:40:38 +00:00
Fixed:
* 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:
parent
be7407fe49
commit
c0d703def6
2 changed files with 3 additions and 3 deletions
|
|
@ -312,7 +312,7 @@ export default class Crunchy implements ServiceClass {
|
|||
useProxy: true
|
||||
};
|
||||
|
||||
let allShows: any[] = [];
|
||||
const allShows: any[] = [];
|
||||
let page = 1;
|
||||
let hasMorePages = true;
|
||||
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue