bugfix: default should not be interactive

This commit is contained in:
cocktailpeanut 2023-03-19 17:22:11 -04:00
parent 4545539d71
commit 55be2120b1

View file

@ -867,7 +867,7 @@ int main(int argc, char ** argv) {
} }
// enable interactive mode if reverse prompt is specified // enable interactive mode if reverse prompt is specified
if (!antipromptv_inp.size()) { if (antipromptv_inp.size() != 0) {
params.interactive = true; params.interactive = true;
} }