diff options
Diffstat (limited to 'Juick')
-rw-r--r-- | Juick/AppDelegate.m | 2 | ||||
-rw-r--r-- | Juick/Supporting Files/Juick-Info.plist | 2 | ||||
-rw-r--r-- | Juick/ViewControllers/MessagesViewController.m | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Juick/AppDelegate.m b/Juick/AppDelegate.m index 0cd064d..5f76145 100644 --- a/Juick/AppDelegate.m +++ b/Juick/AppDelegate.m @@ -80,7 +80,7 @@ NSLog(@"User Info : %@", userInfo); [self parseNotificationPayload:userInfo]; UINavigationController *main = (UINavigationController *)self.window.rootViewController; - [main popToRootViewControllerAnimated:YES]; + [main popToRootViewControllerAnimated:NO]; if ([main.visibleViewController isKindOfClass:[DiscoverViewController class]]) { [main.visibleViewController performSegueWithIdentifier:@"threadViewSegue" sender:main.visibleViewController]; } diff --git a/Juick/Supporting Files/Juick-Info.plist b/Juick/Supporting Files/Juick-Info.plist index 5035e69..4b8907f 100644 --- a/Juick/Supporting Files/Juick-Info.plist +++ b/Juick/Supporting Files/Juick-Info.plist @@ -21,7 +21,7 @@ <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>1.0.43</string> + <string>1.0.44</string> <key>ITSAppUsesNonExemptEncryption</key> <false/> <key>LSApplicationCategoryType</key> diff --git a/Juick/ViewControllers/MessagesViewController.m b/Juick/ViewControllers/MessagesViewController.m index 8e4835b..de79164 100644 --- a/Juick/ViewControllers/MessagesViewController.m +++ b/Juick/ViewControllers/MessagesViewController.m @@ -55,7 +55,7 @@ self.dataLoading = NO; if (scrollToBottom) { NSIndexPath *lastRow = [NSIndexPath indexPathForRow:self.messages.count - 1 inSection:0]; - [self.tableView scrollToRowAtIndexPath:lastRow atScrollPosition:UITableViewScrollPositionBottom animated:YES]; + [self.tableView scrollToRowAtIndexPath:lastRow atScrollPosition:UITableViewScrollPositionBottom animated:NO]; } }]; } |