fix post status display bug

This commit is contained in:
Sami Samhuri 2015-07-04 09:53:15 -07:00
parent 70f313a0b2
commit 63cc9c4375

View file

@ -129,7 +129,10 @@
} }
- (NSString *)statusText { - (NSString *)statusText {
return self.modifiedPost.draft ? @"Draft" : self.modifiedPost.date; if (self.post) {
return self.modifiedPost.draft ? @"Draft" : self.modifiedPost.date;
}
return @"";
} }
- (void)configureLinkView { - (void)configureLinkView {