diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-01-27 01:52:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-02-16 01:20:17 +0100 |
| commit | f015d6b314a6bfc8534e3e2c331d6edd5f817e25 (patch) | |
| tree | 04185cfa94b2a8c5c63be34d33432579f3a603ee /src/lib/send_problem_report_job.cc | |
| parent | 4fb6584369785db4c03d9d0c536b57b25509f2ff (diff) | |
Move _film out of Job into only those Jobs that need it.
This meant some tweaks to the JSON server to only report DCP names for
TranscodeJobs, and a bit of (hopefully) tidying of the disk space check
in the batch converter.
Diffstat (limited to 'src/lib/send_problem_report_job.cc')
| -rw-r--r-- | src/lib/send_problem_report_job.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/send_problem_report_job.cc b/src/lib/send_problem_report_job.cc index 547faab93..4664141d0 100644 --- a/src/lib/send_problem_report_job.cc +++ b/src/lib/send_problem_report_job.cc @@ -47,7 +47,7 @@ SendProblemReportJob::SendProblemReportJob( string from, string summary ) - : Job(film) + : _film(film) , _from(from) , _summary(summary) { |
