Compare commits

...

2 Commits

Author SHA1 Message Date
Fedde Sijbrandij ccf77f242c Merge branch 'UserInput' of https://git.akkerweb.nl/FarmMaps/FarmMapsApiClient into UserInput 2022-02-28 12:24:20 +01:00
Fedde Sijbrandij c5e60d01c3 small update 2022-02-28 12:23:21 +01:00
1 changed files with 1 additions and 2 deletions

View File

@ -116,7 +116,6 @@ namespace FarmmapsDataDownload
if (input.GetCropRecordings)
{
var crprecItem = input.CrprecItem;
//Item cropfieldItem = ;
_logger.LogInformation($"Trying to get crop recordings of croprecording: {crprecItem}");
var cropRec = await _farmmapsApiService.GetItemChildrenAsync(crprecItem, CROPREC_ITEMTYPE);
@ -129,7 +128,7 @@ namespace FarmmapsDataDownload
var cropRecPath = Path.Combine(downloadFolder, $"croprecordings_{crprecItem}.json");
_logger.LogInformation($"Found {cropRec.Count} crop recordings");
var count = 0;
TimeSpan.FromSeconds(0.5);
await Task.Delay(500);
foreach (var item in cropRec)
{
Console.WriteLine($"Crop recording #{count}: {item.Name}");