From: Carl Hetherington Date: Sun, 2 Aug 2020 21:31:59 +0000 (+0200) Subject: Don't terminate if a non-DCP directory is given to Open. X-Git-Tag: v2.15.95~12^2 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=591c73b472f0eb74225dbc1b08885f552b8814c4;hp=af680761cf7c3e97660e8e55c68f42e90b026bf9;p=dcpomatic.git Don't terminate if a non-DCP directory is given to Open. --- diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index 17f652625..11f4bfaa7 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -423,6 +423,8 @@ public: #endif } catch (dcp::ReadError& e) { error_dialog (this, wxString::Format(_("Could not load a DCP from %s"), std_to_wx(dir.string())), std_to_wx(e.what())); + } catch (DCPError& e) { + error_dialog (this, wxString::Format(_("Could not load a DCP from %s"), std_to_wx(dir.string())), std_to_wx(e.what())); } }