diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-01-03 02:29:24 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-01-03 02:29:48 +0100 |
| commit | 9ef42119694384a024104e9456e01d3c0e7bca2f (patch) | |
| tree | 0074eaba9a10b8dd39e7d77b5bb1dff181f1040d /src/tools/dcpomatic_kdm_cli.cc | |
| parent | 8c9194e9cf773af29aee3e5ad327478de62dac7e (diff) | |
Fix failure to save screen notes when making a new one (github bug #6).
Diffstat (limited to 'src/tools/dcpomatic_kdm_cli.cc')
| -rw-r--r-- | src/tools/dcpomatic_kdm_cli.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_kdm_cli.cc b/src/tools/dcpomatic_kdm_cli.cc index 21f9ec734..d0b60366b 100644 --- a/src/tools/dcpomatic_kdm_cli.cc +++ b/src/tools/dcpomatic_kdm_cli.cc @@ -505,7 +505,7 @@ int main (int argc, char* argv[]) { /* Make a new screen and add it to the current cinema */ dcp::CertificateChain chain (dcp::file_to_string(optarg)); - shared_ptr<Screen> screen (new Screen (screen_description, chain.leaf(), vector<TrustedDevice>())); + shared_ptr<Screen> screen (new Screen (screen_description, "", chain.leaf(), vector<TrustedDevice>())); if (cinema) { cinema->add_screen (screen); } |
