From d83118aab363465f4040c24476da2931208f69ee Mon Sep 17 00:00:00 2001 From: spacemeowx2 Date: Tue, 25 Oct 2022 02:48:49 +0800 Subject: [PATCH] feat: better title on progress --- src/app.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.ts b/src/app.ts index 85a660c..299bed5 100644 --- a/src/app.ts +++ b/src/app.ts @@ -359,7 +359,7 @@ export class App { console.log("Fetching battle list..."); const gameList = await getBattleList(this.state); - const { redraw, endBar } = this.exporterProgress("Export games"); + const { redraw, endBar } = this.exporterProgress("Export vs games"); const fetcher = new GameFetcher({ cache: this.opts.cache ?? new FileCache(this.state.cacheDir), state: this.state, @@ -397,7 +397,7 @@ export class App { BattleListType.Coop, ); - const { redraw, endBar } = this.exporterProgress("Export games"); + const { redraw, endBar } = this.exporterProgress("Export coop games"); const fetcher = new GameFetcher({ cache: this.opts.cache ?? new FileCache(this.state.cacheDir), state: this.state,