fixed problem with reply ids
This commit is contained in:
parent
e58d1ef140
commit
4ddfc7d47d
3 changed files with 10 additions and 4 deletions
|
@ -12,7 +12,7 @@
|
|||
|
||||
@implementation Controller
|
||||
|
||||
@synthesize timelineView, timelineViewWindow, mentionsView, mentionsViewWindow, globalHotkeyMenuItem, viewDelegate, oauth;
|
||||
@synthesize timelineView, timelineViewWindow, mentionsView, mentionsViewWindow, globalHotkeyMenuItem, viewDelegate, oauth, logoLayer;
|
||||
|
||||
- (void)awakeFromNib {
|
||||
|
||||
|
@ -168,7 +168,7 @@
|
|||
- (IBAction)sendTweet:(id)sender {
|
||||
|
||||
[oauth updateTweet:[[sender object] objectAtIndex:0]
|
||||
inReplaToStatus:[[sender object] objectAtIndex:1]];
|
||||
inReplaToStatus:[NSString stringWithFormat:@"%d", [[sender object] objectAtIndex:1]]];
|
||||
/*
|
||||
NSString *encodedString = [[[sender object] objectAtIndex:0] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
|
||||
[timelineView stringByEvaluatingJavaScriptFromString:
|
||||
|
|
Reference in a new issue