allow empty text if location or image is present
This commit is contained in:
parent
2f332fb713
commit
95804089db
1 changed files with 2 additions and 1 deletions
|
@ -225,7 +225,8 @@
|
||||||
#pragma mark Keyboard delegate methods
|
#pragma mark Keyboard delegate methods
|
||||||
|
|
||||||
- (IBAction)sendPost:(NSControl *)control {
|
- (IBAction)sendPost:(NSControl *)control {
|
||||||
if ([[control stringValue] length] <= MESSAGE_MAX_LENGTH && [[control stringValue] length] > 0) {
|
BOOL emptyIsOk = self.currentLocation || self.imageFilePath;
|
||||||
|
if (emptyIsOk || ([[control stringValue] length] <= MESSAGE_MAX_LENGTH && [[control stringValue] length] > 0)) {
|
||||||
PostModel *post = [[[PostModel alloc] init] autorelease];
|
PostModel *post = [[[PostModel alloc] init] autorelease];
|
||||||
post.text = [control stringValue];
|
post.text = [control stringValue];
|
||||||
post.inReplyTostatusId = inReplyTostatusId;
|
post.inReplyTostatusId = inReplyTostatusId;
|
||||||
|
|
Reference in a new issue