Fix: Remove downloadCovers switch reference

This commit is contained in:
Felipe M 2021-01-05 19:17:52 +01:00
parent 0764d40e96
commit 1a29fb3c78
1 changed files with 1 additions and 1 deletions

View File

@ -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
}