diff --git a/tubearchivist/home/src/index/filesystem.py b/tubearchivist/home/src/index/filesystem.py index ac498303..13a0ae5a 100644 --- a/tubearchivist/home/src/index/filesystem.py +++ b/tubearchivist/home/src/index/filesystem.py @@ -473,6 +473,10 @@ class ManualImport: youtube_meta_overwrite=self._get_info_json(), media_path=self.current_video["media"], ) + if not video.json_data: + print(f"{video_id}: manual import failed, and no metadata found.") + raise ValueError + video.check_subtitles() video.upload_to_es()