summaryrefslogtreecommitdiff
path: root/Juick/MainPage.xaml.cs
diff options
context:
space:
mode:
authorGravatar vitalyster2012-10-09 23:23:43 +0400
committerGravatar vitalyster2012-10-09 23:23:43 +0400
commit9252e0da67df741fa9212269434087689fb3f01e (patch)
tree94dcd15560f911cbbb0b527e941227e860298626 /Juick/MainPage.xaml.cs
parente3eefd6bf4af630cfd1db4a3701492d184185e10 (diff)
remove crap from relative URLs
Diffstat (limited to 'Juick/MainPage.xaml.cs')
-rw-r--r--Juick/MainPage.xaml.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Juick/MainPage.xaml.cs b/Juick/MainPage.xaml.cs
index 43a2327..6ea6e04 100644
--- a/Juick/MainPage.xaml.cs
+++ b/Juick/MainPage.xaml.cs
@@ -157,7 +157,7 @@ namespace Juick
return;
// Navigate to the new page
- NavigationService.Navigate(new Uri(string.Format("/ThreadView.xaml?mid={0}&last=true", App.LastView.Items[((ListBox)sender).SelectedIndex].MID), UriKind.Relative));
+ NavigationService.Navigate(new Uri(string.Format("/ThreadView.xaml?mid={0}", App.LastView.Items[((ListBox)sender).SelectedIndex].MID), UriKind.Relative));
// Reset selected index to -1 (no selection)
((ListBox)sender).SelectedIndex = -1;