Dude, in previous version everything worked fine. + if you use simple list processing action with take line then again everything is ok. Please open bug task and do not argue with me
No no no. I'm not there to offend somebody. Just there is bug and I know it, but again this is some weird bug. Let me show you what I'm getting.
This is piece of code: and this is what I can see in logs:
In some reason it does not return string, but all data is returner like in list and without comas. I'm more than sure that there is some mistake because there was changed something in table settings, for csv files...
About this:
string data = masterList.ElementAt(0);
string data = masterList[0];
// Save all data by sites
var masterList = project.Lists["Master"];
if(masterList.Count == 0)
{
project.SendInfoToLog("Links prepared", true);
return true;
}
string data = masterList[0];
project.SendInfoToLog(data, true);
return Macros.TextProcessing.Split(data, ",", "2").First();