diff options
Diffstat (limited to 'Juick')
-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(), ^{ |