From e975ce9e859d14f5bd0a76e0415b26d88702d95b Mon Sep 17 00:00:00 2001 From: Andreas Linde Date: Wed, 7 Dec 2011 15:48:24 +0100 Subject: [PATCH] Fix for an older commit in QuincyKit being only half complete Even if the user did select to auto send, the dialog appeared again, because the new check if this was the case and if auto send is currently allowed wasn't actually used --- Classes/BWQuincyManager.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/BWQuincyManager.m b/Classes/BWQuincyManager.m index c9ec61eb87..7753489b10 100644 --- a/Classes/BWQuincyManager.m +++ b/Classes/BWQuincyManager.m @@ -260,7 +260,7 @@ NSString *BWQuincyLocalize(NSString *stringToken) { if (!quincyBundle()) { NSLog(@"WARNING: Quincy.bundle is missing, sending reports automatically!"); [self _sendCrashReports]; - } else if (!self.autoSubmitCrashReport && [self hasNonApprovedCrashReports]) { + } else if (![self autoSendCrashReports] && [self hasNonApprovedCrashReports]) { if (self.delegate != nil && [self.delegate respondsToSelector:@selector(willShowSubmitCrashReportAlert)]) { [self.delegate willShowSubmitCrashReportAlert];