X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fchristie_certificate_panel.cc;h=9e95aa994531a728a989d153b560bb25e2cd6652;hb=ab0e8cdcafdcb83096012380f674b8280474e851;hp=fa91cc2b594ae2f79deb7ded0687634686bfca10;hpb=c3fc23c2670ae6377ef42a4e4af051d47b88e75d;p=dcpomatic.git diff --git a/src/wx/christie_certificate_panel.cc b/src/wx/christie_certificate_panel.cc index fa91cc2b5..9e95aa994 100644 --- a/src/wx/christie_certificate_panel.cc +++ b/src/wx/christie_certificate_panel.cc @@ -57,13 +57,13 @@ ChristieCertificatePanel::do_download () optional all_errors; - optional error = get_from_url (url, true, boost::bind (&DownloadCertificatePanel::load, this, _1)); + optional error = get_from_url (url, true, false, boost::bind (&DownloadCertificatePanel::load, this, _1)); if (error) { all_errors = *error; string const url = String::compose ("%1IMB-S2/IMB-S2_%2_sha256.pem", prefix, serial); - error = get_from_url (url, true, boost::bind (&DownloadCertificatePanel::load, this, _1)); + error = get_from_url (url, true, false, boost::bind (&DownloadCertificatePanel::load, this, _1)); if (error) { *all_errors += "\n" + *error; }