We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54bdc28 commit b883e06Copy full SHA for b883e06
Signal-Windows/Views/MainPage.xaml.cs
@@ -85,7 +85,11 @@ protected override void OnNavigatedTo(NavigationEventArgs e)
85
UpdateLayout();
86
SwitchToStyle(GetCurrentViewStyle());
87
MainPanel.DisplayMode = SplitViewDisplayMode.CompactInline;
88
- if (Vm.SelectedThread != null)
+ if (e.Parameter != null)
89
+ {
90
+ Vm.SelectConversation((string) e.Parameter);
91
+ }
92
+ else if (Vm.SelectedThread != null)
93
{
94
ConversationControl.Load(Vm.SelectedThread);
95
}
0 commit comments