diff options
author | cocktailpeanut <121128867+cocktailpeanut@users.noreply.github.com> | 2023-03-19 17:44:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-19 23:44:20 +0200 |
commit | da5303c1ea68aa19db829c634f1e10d08d409680 (patch) | |
tree | d064ae2e238a5a1b2787dbf96ce0620b79ed55d3 | |
parent | 4545539d718cf88f4c3a76669b8ac2e26cd8a1e5 (diff) |
bugfix: default should not be interactive (#304)
-rw-r--r-- | main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |