public override void ViewDidAppear(bool animated)
        {
            Reachability.getStatus();

            this.NavigationController.SetNavigationBarHidden(true, true);

            // If jumpToNextView == true, only one dossier is available so open the timeline directly.
            if (jumpToNextView)
            {
                NavigationController.PushViewController(new TimelineViewController(), false);
            }
        }