summaryrefslogtreecommitdiff
path: root/Juick/ViewControllers/FeedViewController.m
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/ViewControllers/FeedViewController.m')
-rw-r--r--Juick/ViewControllers/FeedViewController.m14
1 files changed, 2 insertions, 12 deletions
diff --git a/Juick/ViewControllers/FeedViewController.m b/Juick/ViewControllers/FeedViewController.m
index a5f7a43..f1fdb0a 100644
--- a/Juick/ViewControllers/FeedViewController.m
+++ b/Juick/ViewControllers/FeedViewController.m
@@ -25,7 +25,7 @@ NSString * const UserNotAuthenticatedNotificationName = @"UserNotAuthenticated";
-(void) viewDidLoad {
self.messagesDelegate = self;
- self.title = @"Today";
+ self.navigationController.visibleViewController.title = @"Today";
[self refreshPath];
[self setShouldScrollToUnreadOnRefresh:NO];
[super viewDidLoad];
@@ -47,17 +47,7 @@ NSString * const UserNotAuthenticatedNotificationName = @"UserNotAuthenticated";
}
}
-- (BOOL)shouldPerformSegueWithIdentifier:(NSString *)identifier sender:(id)sender {
- if ([identifier isEqualToString:@"newPostSegue"]) {
- if ([[APIClient sharedClient] isAuthenticated]) {
- return YES;
- } else {
- [[AppDelegate shared] presentLoginView:self];
- return NO;
- }
- }
- return YES;
-}
+
- (void)didReceiveChallenge {