fix: do not use custom args in simple mode

This commit is contained in:
Cyrix126 2024-10-01 21:47:17 +02:00
parent 881fa56613
commit eff8573ed5

View file

@ -113,7 +113,7 @@ impl Helper {
let ip;
let port;
// custom args from user input
if !state.arguments.is_empty() {
if !state.arguments.is_empty() && !state.simple {
args.push(state.arguments.clone());
return args;
}