Skip to content

Commit

Permalink
Remove CLI chat update 'no options' failure condition so it can be us…
Browse files Browse the repository at this point in the history
…ed to transcode formats
  • Loading branch information
ScrubN committed Mar 5, 2023
1 parent a5c40ae commit a9d9b62
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions TwitchDownloaderCLI/Modes/UpdateChat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@ private static ChatUpdateOptions GetUpdateOptions(ChatUpdateArgs inputOptions)
{
Console.WriteLine("[WARNING] - Output file path is identical to input file. This is not recommended in case something goes wrong. All data will be permanantly overwritten!");
}
if (!inputOptions.EmbedMissing && !inputOptions.ReplaceEmbeds && double.IsNegative(inputOptions.CropBeginningTime) && double.IsNegative(inputOptions.CropEndingTime))
{
Console.WriteLine("[ERROR] - No update options were passed. Please pass --embed-missing, --replace-embeds, -b, or -e");
Environment.Exit(1);
}

ChatUpdateOptions updateOptions = new()
{
Expand Down

0 comments on commit a9d9b62

Please sign in to comment.