diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-07-09 20:33:16 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-07-11 12:22:11 +0200 |
| commit | bc9354685d059d91a040a9520bedc030746ce5cf (patch) | |
| tree | a0549d7504c02b4cbcb91e8d539b36acb8a5263c | |
| parent | 8b9888ed8247109dc3c09492302e865fa4731460 (diff) | |
We no longer support .ecinema files.
| -rw-r--r-- | src/wx/content_view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/content_view.cc b/src/wx/content_view.cc index f4c9aca9d..c26186c55 100644 --- a/src/wx/content_view.cc +++ b/src/wx/content_view.cc @@ -96,7 +96,7 @@ ContentView::update () shared_ptr<Content> content; if (is_directory(i) && (is_regular_file(i / "ASSETMAP") || is_regular_file(i / "ASSETMAP.xml"))) { content.reset (new DCPContent(i)); - } else if (i.path().extension() == ".mp4" || i.path().extension() == ".ecinema") { + } else if (i.path().extension() == ".mp4") { content = content_factory(i).front(); } |
