diff options
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))) { |
