diff --git a/src/main.cpp b/src/main.cpp index f6f68769c..24d891a06 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -166,6 +166,9 @@ int main(int argc, char** argv) #endif const bool pwstdin = parser.isSet(pwstdinOption); + if (!fileNames.isEmpty() && pwstdin) { + Utils::setDefaultTextStreams(); + } for (const QString& filename : fileNames) { QString password; if (pwstdin) { @@ -173,7 +176,6 @@ int main(int argc, char** argv) // buffer for native messaging, even if the specified file does not exist QTextStream out(stdout, QIODevice::WriteOnly); out << QObject::tr("Database password: ") << flush; - Utils::setDefaultTextStreams(); password = Utils::getPassword(); }