Fix iOS6 reloading activity with no messages present to never stop

This commit is contained in:
Andreas Linde 2012-10-11 16:56:02 +02:00
parent 36be3708f2
commit f34d458d95

View File

@ -660,6 +660,9 @@
- (void)fetchMessageUpdates {
if ([_feedbackList count] == 0) {
// inform the UI to update its data in case the list is already showing
[[NSNotificationCenter defaultCenter] postNotificationName:BITHockeyFeedbackMessagesLoadingFinished object:nil];
return;
}