see whats happening for once
This commit is contained in:
parent
4b4db4fbff
commit
f336b73b68
Binary file not shown.
|
@ -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;
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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.
Loading…
Reference in New Issue