Make the downloader more resiliant

This commit is contained in:
2026-03-02 02:23:46 -06:00
parent 8851f710fb
commit 44c87e1e50
5 changed files with 98 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
class VideoDownloadError {
public VideoDownloadError(id, error)
{
Id = id;
Error = error;
}
public Id;
public Error;
public ToString()
{
return $"Download error {Error} with Id: {Id}";
}
}