see whats happening for once

This commit is contained in:
Demetria Lovato 2021-06-25 20:22:31 -07:00
parent 4b4db4fbff
commit f336b73b68
8 changed files with 27 additions and 1 deletions

Binary file not shown.

View File

@ -91,6 +91,7 @@ namespace youtube_downloader.Server.Functions
}
}catch(Exception ex)
{
Console.WriteLine(ex.Message);
_ = ex;
}
@ -181,6 +182,8 @@ namespace youtube_downloader.Server.Functions
}
}catch(Exception ex)
{
Console.WriteLine(ex.Message);
_ = ex;
}
}
@ -236,6 +239,8 @@ namespace youtube_downloader.Server.Functions
}
}catch(Exception ex)
{
Console.WriteLine(ex.Message);
_ = ex;
}
}
@ -360,6 +365,8 @@ namespace youtube_downloader.Server.Functions
}
catch(Exception ex)
{
Console.WriteLine(ex.Message);
_ = ex;
}
}
@ -446,6 +453,8 @@ namespace youtube_downloader.Server.Functions
Directory.CreateDirectory(Path.GetDirectoryName(dir));
}catch(Exception ex)
{
Console.WriteLine(ex.Message);
_ = ex;
}
return dir;

View File

@ -114,6 +114,8 @@ namespace youtube_downloader.Server.Models
sv = SavedVideo.CreateFrom(res, vinfo, Functions.Downloader.DL._DownloadThumbnail);
}catch(Exception ex)
{
Console.WriteLine(ex.Message);
sv = null;
_ = ex;
}
@ -167,7 +169,8 @@ namespace youtube_downloader.Server.Models
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
_ = ex;
}
}
@ -175,11 +178,15 @@ namespace youtube_downloader.Server.Models
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
_ = ex;
}
}
catch (Exception ex2)
{
Console.WriteLine(ex2.Message);
_ = ex2;
}
return video.ToArray();
@ -220,6 +227,8 @@ namespace youtube_downloader.Server.Models
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
_ = ex;
}
@ -228,11 +237,15 @@ namespace youtube_downloader.Server.Models
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
_ = ex;
}
}
catch (Exception ex2)
{
Console.WriteLine(ex2.Message);
_ = ex2;
}
return video.ToArray();

View File

@ -37,10 +37,14 @@ namespace TessesYoutubeDownloader.Server.Models
});
}catch(Exception ex)
{
Console.WriteLine(ex.Message);
_ = ex;
}
}catch(Exception ex2)
{
Console.WriteLine(ex2.Message);
_ = ex2;
}
return pl2;

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.