From 723649850dd9c47af15e6319a28bba1fb8cefee1 Mon Sep 17 00:00:00 2001 From: Damiano Galassi Date: Sat, 27 Oct 2018 15:44:01 +0200 Subject: MacGui: add an assert in HBQueueController to track down a rare crash. --- macosx/HBQueueController.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'macosx') diff --git a/macosx/HBQueueController.m b/macosx/HBQueueController.m index 7fb3878c1..3a0840293 100644 --- a/macosx/HBQueueController.m +++ b/macosx/HBQueueController.m @@ -854,7 +854,9 @@ static void *HBControllerQueueCoreContext = &HBControllerQueueCoreContext; NSParameterAssert(job); // Reset the title in the job. - job.title = self.core.titles[0]; + job.title = self.core.titles.firstObject; + + NSParameterAssert(job); HBStateFormatter *formatter = [[HBStateFormatter alloc] init]; formatter.title = job.outputFileName; -- cgit v1.2.3