summaryrefslogtreecommitdiff
path: root/Juick/MainPage.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/MainPage.xaml.cs')
-rw-r--r--Juick/MainPage.xaml.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/Juick/MainPage.xaml.cs b/Juick/MainPage.xaml.cs
index d6b0b08..503c023 100644
--- a/Juick/MainPage.xaml.cs
+++ b/Juick/MainPage.xaml.cs
@@ -110,6 +110,11 @@ namespace Juick
{
NavigationService.Navigate(new Uri(navigateUri, UriKind.Relative));
}
+ else
+ {
+ ((ViewModels.ViewModelBase)Home.DataContext).LoadData(null);
+ ((ViewModels.ViewModelBase)Last.DataContext).LoadData(null);
+ }
}
void PushChannel_ChannelUriUpdated(object sender, NotificationChannelUriEventArgs e)
@@ -163,8 +168,8 @@ namespace Juick
{
App.MyFeedView.Items.Clear();
App.LastView.Items.Clear();
- App.MyFeedView.LoadData();
- App.LastView.LoadData();
+ App.MyFeedView.LoadData(null);
+ App.LastView.LoadData(null);
}
private void ApplicationBarMenuItemClick(object sender, EventArgs e)