From 591c73b472f0eb74225dbc1b08885f552b8814c4 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 2 Aug 2020 23:31:59 +0200 Subject: [PATCH] Don't terminate if a non-DCP directory is given to Open. --- src/tools/dcpomatic_player.cc | 2 ++ 1 file changed, 2 insertions(+) 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())); } } -- 2.30.2