fixed problem with OAuth login and reply_id
This commit is contained in:
parent
dd0991c316
commit
dff8d4a1a6
3 changed files with 13 additions and 10 deletions
|
@ -167,8 +167,10 @@
|
|||
|
||||
- (IBAction)sendTweet:(id)sender {
|
||||
|
||||
|
||||
|
||||
NSString *replyToId;
|
||||
if ([[[sender object] objectAtIndex:1] respondsToSelector:@selector(stringValue:)]) {
|
||||
if (![[[sender object] objectAtIndex:1] isEqualTo:@""]) {
|
||||
replyToId = [[[sender object] objectAtIndex:1] stringValue];
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue