Skip to content

Commit

Permalink
Remove --silent arg from chat downloader (#1156)
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrubN authored Jul 20, 2024
1 parent cf9101a commit 193136d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions TwitchDownloaderCLI/Modes/Arguments/ChatDownloadArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ internal sealed class ChatDownloadArgs : IFileCollisionArgs, ITwitchDownloaderAr
[Option('t', "threads", Default = 4, HelpText = "Number of parallel download threads. Large values may result in IP rate limiting.")]
public int DownloadThreads { get; set; }

[Option("silent", Default = false, HelpText = "Suppresses progress console output")]
public bool Silent { get; set; }

[Option("temp-path", Default = "", HelpText = "Path to temporary folder to use for cache.")]
public string TempFolder { get; set; }

Expand Down
1 change: 0 additions & 1 deletion TwitchDownloaderCLI/Modes/DownloadChat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ private static ChatDownloadOptions GetDownloadOptions(ChatDownloadArgs inputOpti
Compression = inputOptions.Compression,
TimeFormat = inputOptions.TimeFormat,
DownloadThreads = inputOptions.DownloadThreads,
Silent = inputOptions.Silent,
BttvEmotes = (bool)inputOptions.BttvEmotes!,
FfzEmotes = (bool)inputOptions.FfzEmotes!,
StvEmotes = (bool)inputOptions.StvEmotes!,
Expand Down
1 change: 0 additions & 1 deletion TwitchDownloaderCore/Options/ChatDownloadOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public class ChatDownloadOptions
public bool FfzEmotes { get; set; }
public bool StvEmotes { get; set; }
public int DownloadThreads { get; set; } = 1;
public bool Silent { get; set; } = false;
public TimestampFormat TimeFormat { get; set; }
public string FileExtension
{
Expand Down

0 comments on commit 193136d

Please sign in to comment.