diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-01-13 23:06:38 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-01-13 23:06:38 +0100 |
| commit | 1c1676c83d5785e4c6a2212e68a8dff46eab4847 (patch) | |
| tree | 42bd3f6268f43cd3147ffc5cf45f4b67b0f2d829 /src/wx/qube_certificate_panel.cc | |
| parent | e49fafc6388cec38e9e78e2c9d5d1f5890c13066 (diff) | |
Trim spaces from entries to certificate download pages.
Diffstat (limited to 'src/wx/qube_certificate_panel.cc')
| -rw-r--r-- | src/wx/qube_certificate_panel.cc | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/wx/qube_certificate_panel.cc b/src/wx/qube_certificate_panel.cc index 8e9662e7d..b40a9ecf6 100644 --- a/src/wx/qube_certificate_panel.cc +++ b/src/wx/qube_certificate_panel.cc @@ -19,17 +19,18 @@ */ -#include "qube_certificate_panel.h" #include "download_certificate_dialog.h" +#include "qube_certificate_panel.h" #include "wx_util.h" -#include "lib/internet.h" #include "lib/compose.hpp" #include "lib/config.h" -#include <boost/algorithm/string/predicate.hpp> +#include "lib/internet.h" +#include <boost/algorithm/string.hpp> using std::string; using std::list; +using namespace boost::algorithm; using boost::optional; #if BOOST_VERSION >= 106100 using namespace boost::placeholders; @@ -56,7 +57,9 @@ QubeCertificatePanel::do_download () return; } - auto const serial = wx_to_std(_serial->GetValue()); + auto serial = wx_to_std(_serial->GetValue()); + trim(serial); + optional<string> name; for (auto i: files) { if (boost::algorithm::starts_with(i, String::compose("%1-%2-", _type, serial))) { |
