diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-27 18:59:43 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-27 18:59:43 +0100 |
| commit | a4642b6463430175d0f4e1ca284a4bf08bcf4de9 (patch) | |
| tree | 55bcf5cd135ea88a8fedc6931c6a33c4a90b0112 /src/lib/examine_content_job.cc | |
| parent | 951a81dbb75db9850ee0226f74a575af7335a576 (diff) | |
Fix multiple video adds to be consecutive.
Diffstat (limited to 'src/lib/examine_content_job.cc')
| -rw-r--r-- | src/lib/examine_content_job.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/examine_content_job.cc b/src/lib/examine_content_job.cc index 6d5f4faf9..f68a1eea0 100644 --- a/src/lib/examine_content_job.cc +++ b/src/lib/examine_content_job.cc @@ -21,6 +21,7 @@ #include "examine_content_job.h" #include "log.h" #include "content.h" +#include "film.h" #include "i18n.h" @@ -48,6 +49,7 @@ void ExamineContentJob::run () { _content->examine (shared_from_this ()); + _film->add_content (_content); set_progress (1); set_state (FINISHED_OK); } |
