1
0
Fork 0
mirror of https://github.com/fiso64/slsk-batchdl.git synced 2024-12-22 06:22:41 +00:00

--title-col

This commit is contained in:
fiso64 2024-10-04 16:35:29 +02:00
parent 6a2e68e562
commit 317ff262c3
2 changed files with 4 additions and 3 deletions

View file

@ -34,7 +34,7 @@ public class Config
public string password = "";
public string artistCol = "";
public string albumCol = "";
public string trackCol = "";
public string titleCol = "";
public string ytIdCol = "";
public string descCol = "";
public string trackCountCol = "";
@ -713,7 +713,8 @@ public class Config
break;
case "--tc":
case "--track-col":
trackCol = args[++i];
case "--title-col":
titleCol = args[++i];
break;
case "--alc":
case "--album-col":

View file

@ -23,7 +23,7 @@ namespace Extractors
csvFilePath = input;
var tracks = await ParseCsvIntoTrackInfo(input, Config.I.artistCol, Config.I.trackCol, Config.I.lengthCol,
var tracks = await ParseCsvIntoTrackInfo(input, Config.I.artistCol, Config.I.titleCol, Config.I.lengthCol,
Config.I.albumCol, Config.I.descCol, Config.I.ytIdCol, Config.I.trackCountCol, Config.I.timeUnit, Config.I.ytParse);
if (reverse)