From 80334a6484e44019fda79ba2c29120083c67099a Mon Sep 17 00:00:00 2001 From: Demetria Lovato Date: Wed, 23 Jun 2021 20:00:49 -0700 Subject: [PATCH] s --- Program.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Program.cs b/Program.cs index 1206ab9..2d68c71 100644 --- a/Program.cs +++ b/Program.cs @@ -232,43 +232,43 @@ namespace youtube_downloader break; } - return 0; + return 1; } private static int RunMoveQueue(MoveQueue opts) { Server.Functions.Downloader.ModQueue(opts.MoveTo, opts.MoveFrom); - return 0; + return 1; } private static int RunDownloadUser(DownloadUser opts) { Server.Functions.Downloader.DownloadUser(opts.Id, opts.Format); - return 0; + return 1; } private static int RunExitApp(ExitApp opts) { Environment.Exit(0); - return 0; + return 1; } private static int RunDownloadVideo(DownloadVideo opts) { Server.Functions.Downloader.DownloadVideo(opts.Id, opts.Format); - return 0; + return 1; } private static int RunDownloadPlaylist(DownloadPlaylist opts) { Server.Functions.Downloader.DownloadPlaylist(opts.Id, opts.Format); - return 0; + return 1; } private static int RunDownloadChannel(DownloadChannel opts) { Server.Functions.Downloader.DownloadChannel(opts.Id, opts.Format); - return 0; + return 1; } } }