diff options
| author | Chris Bessent <lost.dragonist@gmail.com> | 2021-11-23 20:05:29 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-23 20:05:29 -0700 |
| commit | fc40619fd9383eaf2bc7d0ba14695404b7f55bdb (patch) | |
| tree | 7c6dbfbdea980ac1913e3066a5f2fb50e196f9bd /src/settingsdialogworkarounds.cpp | |
| parent | 6ab88d5de108887dd97e0899e2554ee36cc3bdee (diff) | |
| parent | 565f2fddf4cf29fec3f8626ae4f7acba8aef615c (diff) | |
Merge pull request #1621 from LostDragonist/misc_fixes
Misc fixes
Diffstat (limited to 'src/settingsdialogworkarounds.cpp')
| -rw-r--r-- | src/settingsdialogworkarounds.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/settingsdialogworkarounds.cpp b/src/settingsdialogworkarounds.cpp index 17b2259b..df87aa16 100644 --- a/src/settingsdialogworkarounds.cpp +++ b/src/settingsdialogworkarounds.cpp @@ -4,6 +4,7 @@ #include "settings.h" #include <report.h> #include <iplugingame.h> +#include <log.h> WorkaroundsSettingsTab::WorkaroundsSettingsTab(Settings& s, SettingsDialog& d) : SettingsTab(s, d) @@ -16,6 +17,8 @@ WorkaroundsSettingsTab::WorkaroundsSettingsTab(Settings& s, SettingsDialog& d) // steam QString username, password; settings().steam().login(username, password); + MOBase::log::getDefault().addToBlacklist(username.toStdString(), "STEAM_USERNAME"); + MOBase::log::getDefault().addToBlacklist(password.toStdString(), "STEAM_PASSWORD"); ui->appIDEdit->setText(settings().steam().appID()); ui->steamUserEdit->setText(username); |
