Skip to content

Commit

Permalink
fix loop counter
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticroentgen committed Jun 3, 2024
1 parent 5a922c4 commit 59ab60a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,12 +159,15 @@ async Task<Cookie> FileCookie()
Console.WriteLine("==> Send to S3 storage");
var s3 = new S3Uploader(s3Host, s3AccessKey, s3SecretKey, s3Bucket);
await s3.UploadFileAsync(encryptedFile);
ct++;
}
catch (Exception ex)
{
Console.WriteLine($"Unable to initiate download: {ex.Message}");
}
finally
{
ct++;
}
}

// Purge Emails
Expand Down

0 comments on commit 59ab60a

Please sign in to comment.