diff options
author | Vitaly Takmazov | 2014-01-30 17:52:24 +0400 |
---|---|---|
committer | Vitaly Takmazov | 2014-01-30 17:52:24 +0400 |
commit | 297dfab2b57a00a7a40328d68af30dc6b32d3320 (patch) | |
tree | 7f706ad3056b1e8d78f089ff7d80b8e06341d0ad | |
parent | 5280123fef2cf2b64ed046ec6f76763ae6e4b455 (diff) |
fix loading next messages
-rw-r--r-- | Juick/Juick-Info.plist | 4 | ||||
-rw-r--r-- | Juick/MessagesViewController.m | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Juick/Juick-Info.plist b/Juick/Juick-Info.plist index f780290..06e7432 100644 --- a/Juick/Juick-Info.plist +++ b/Juick/Juick-Info.plist @@ -17,11 +17,11 @@ <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> - <string>1.0.6</string> + <string>1.0.7</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>1.0.6</string> + <string>1.0.7</string> <key>LSApplicationCategoryType</key> <string>public.app-category.social-networking</string> <key>LSRequiresIPhoneOS</key> diff --git a/Juick/MessagesViewController.m b/Juick/MessagesViewController.m index 64d7106..6930de8 100644 --- a/Juick/MessagesViewController.m +++ b/Juick/MessagesViewController.m @@ -77,7 +77,7 @@ static NSString *CellIdentifier = @"MessageCell"; Message * lastMessage = [self.messages lastObject]; if (lastMessage != nil) { - [self.params setValue:lastMessage.MID forKey:@"before_mid"]; + [self.params setObject:lastMessage.MID forKey:@"before_mid"]; } [Message pullNextFromPath:self.path params:self.params callback:^(NSArray *next) { dispatch_async(dispatch_get_main_queue(), ^{ |