Skip to content

Commit a3e756b

Browse files
committed
Merge #10093: [Qt] Don't add arguments of sensitive command to console window
7278537 [Qt] Don't add arguments of sensitive command to console window (Jonas Schnelli) Tree-SHA512: 3e5aa19a3f157caf383a0fd7dbf9b0d298d31ddaf8e24e3d1a8b913e19f54f3b69e115f98a21f3e3a14e5ccb368b59de061490ed39718299456a04989f8e3366
2 parents f4a6180 + 7278537 commit a3e756b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/rpcconsole.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ void RPCConsole::on_lineEdit_returnPressed()
829829

830830
cmdBeforeBrowsing = QString();
831831

832-
message(CMD_REQUEST, cmd);
832+
message(CMD_REQUEST, QString::fromStdString(strFilteredCmd));
833833
Q_EMIT cmdRequest(cmd);
834834

835835
cmd = QString::fromStdString(strFilteredCmd);

0 commit comments

Comments
 (0)