adium/adium

Fix a logic error in the crash log detection where it wouldn't show an alert unless you had previously seen an alert.
--- a/Other/Adium Crash Reporter/AICrashReporter.m Fri Jul 19 17:06:36 2013 -0400
+++ b/Other/Adium Crash Reporter/AICrashReporter.m Sat Aug 03 21:12:16 2013 -0400
@@ -1,4 +1,4 @@
-/*
+/*
* Adium is the legal property of its developers, whose names are listed in the copyright file included
* with this source distribution.
*
@@ -63,7 +63,7 @@
NSDate *lastKnownCrashDate = [defaults objectForKey:LAST_CRASH_DATE];
// check to see if Adium crashed since the last crash (there's a newer crash report)
- if (lastKnownCrashDate && [mostRecentCrashDate compare:lastKnownCrashDate] == NSOrderedDescending) {
+ if (mostRecentCrashDate && (!lastKnownCrashDate || [mostRecentCrashDate compare:lastKnownCrashDate] == NSOrderedDescending)) {
[NSBundle loadNibNamed:@"CrashReporter" owner:self];
// save last crash date