From da5303c1ea68aa19db829c634f1e10d08d409680 Mon Sep 17 00:00:00 2001 From: cocktailpeanut <121128867+cocktailpeanut@users.noreply.github.com> Date: Sun, 19 Mar 2023 17:44:20 -0400 Subject: [PATCH] bugfix: default should not be interactive (#304) --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index c7186e0..c005d17 100644 --- a/main.cpp +++ b/main.cpp @@ -867,7 +867,7 @@ int main(int argc, char ** argv) { } // enable interactive mode if reverse prompt is specified - if (!antipromptv_inp.size()) { + if (antipromptv_inp.size() != 0) { params.interactive = true; }