diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-01-20 00:31:32 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-20 20:36:46 +0100 |
| commit | 385635f00d39822389adbc99a2d5bdd992f16432 (patch) | |
| tree | 284ad0ac65988eb102f0f6334701496213cfd7a7 /src/lib/examine_content_job.h | |
| parent | 0b66748421b751b1863ce86f98ab449c8e8e87fc (diff) | |
Pass tolerant flag into Content::examine() and the ExamineContentJob.
Along the way this helps to fix #2942.
Diffstat (limited to 'src/lib/examine_content_job.h')
| -rw-r--r-- | src/lib/examine_content_job.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/examine_content_job.h b/src/lib/examine_content_job.h index 601b28584..cdcba3430 100644 --- a/src/lib/examine_content_job.h +++ b/src/lib/examine_content_job.h @@ -28,7 +28,7 @@ class Content; class ExamineContentJob : public Job { public: - ExamineContentJob (std::shared_ptr<const Film>, std::shared_ptr<Content>); + ExamineContentJob(std::shared_ptr<const Film> film, std::shared_ptr<Content> content, bool tolerant); ~ExamineContentJob (); std::string name () const override; @@ -41,4 +41,6 @@ public: private: std::shared_ptr<Content> _content; + + bool _tolerant; }; |
