From 55be2120b157b22657669d3d5a95f465f809a8e2 Mon Sep 17 00:00:00 2001 From: cocktailpeanut Date: Sun, 19 Mar 2023 17:22:11 -0400 Subject: [PATCH] bugfix: default should not be interactive --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index c7186e0df..c005d17cc 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; }