From 1a29fb3c78ee096ba183c324f747be02ee27a9af Mon Sep 17 00:00:00 2001 From: Felipe M Date: Tue, 5 Jan 2021 19:17:52 +0100 Subject: [PATCH] Fix: Remove downloadCovers switch reference --- pkg/cli/cli.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cli/cli.go b/pkg/cli/cli.go index 2502125..4258f0e 100644 --- a/pkg/cli/cli.go +++ b/pkg/cli/cli.go @@ -52,7 +52,7 @@ func getGamesFromProvider(provider string, inputPath string, downloadCovers bool case "minecraft": games = append(games, minecraft.GetGames()...) case "nintendo-switch": - games = append(games, nintendo_switch.GetGames(inputPath, downloadCovers)...) + games = append(games, nintendo_switch.GetGames(inputPath)...) } return games }