mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-15 21:45:19 +00:00
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
This commit is contained in:
parent
58f68d4817
commit
e975ce9e85
@ -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];
|
||||
|
Loading…
x
Reference in New Issue
Block a user