diff options
Diffstat (limited to 'macosx/HBJob+HBJobConversion.m')
-rw-r--r-- | macosx/HBJob+HBJobConversion.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBJob+HBJobConversion.m b/macosx/HBJob+HBJobConversion.m index 5c6d9126b..852603e40 100644 --- a/macosx/HBJob+HBJobConversion.m +++ b/macosx/HBJob+HBJobConversion.m @@ -34,12 +34,12 @@ - (hb_job_t *)hb_job { NSAssert(self.title, @"HBJob: calling hb_job without a valid title loaded"); - NSAssert(self.destURL, @"HBJob: calling hb_job without a valid destination"); + NSAssert(self.completeOutputURL, @"HBJob: calling hb_job without a valid destination"); hb_title_t *title = self.title.hb_title; hb_job_t *job = hb_job_init(title); - hb_job_set_file(job, self.destURL.path.fileSystemRepresentation); + hb_job_set_file(job, self.completeOutputURL.path.fileSystemRepresentation); // Title Angle for dvdnav job->angle = self.angle; |