From c0d703def6c3613b1c976e432e44c6aac3000aa4 Mon Sep 17 00:00:00 2001 From: Burve Date: Mon, 16 Jun 2025 01:25:59 +0300 Subject: [PATCH] Fixed: * Description for the sraw (--show-raw) command now properly capitalized and is "Get Raw Show data" * allShows variable switched to const from let --- crunchy.ts | 2 +- modules/module.args.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crunchy.ts b/crunchy.ts index f9fcddb..39338f5 100644 --- a/crunchy.ts +++ b/crunchy.ts @@ -312,7 +312,7 @@ export default class Crunchy implements ServiceClass { useProxy: true }; - let allShows: any[] = []; + const allShows: any[] = []; let page = 1; let hasMorePages = true; diff --git a/modules/module.args.ts b/modules/module.args.ts index d2d3120..500b8da 100644 --- a/modules/module.args.ts +++ b/modules/module.args.ts @@ -148,7 +148,7 @@ const args: TAppArg[] = [ 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[] = [ 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',