From b8fc43f1e83e1eb89b23c413d9da69afc3a6f7ab Mon Sep 17 00:00:00 2001 From: Michael Gordeev Date: Tue, 9 Oct 2018 18:20:37 +0300 Subject: [PATCH] #205: Fix fixed --- FoxTube/Pages/VideoPage.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FoxTube/Pages/VideoPage.xaml.cs b/FoxTube/Pages/VideoPage.xaml.cs index 5e75068..30272f6 100644 --- a/FoxTube/Pages/VideoPage.xaml.cs +++ b/FoxTube/Pages/VideoPage.xaml.cs @@ -523,7 +523,7 @@ namespace FoxTube.Pages private async void subscribe_Click(object sender, RoutedEventArgs e) { - if (await SecretsVault.ChangeSubscriptionState(channelId)) + if (await SecretsVault.ChangeSubscriptionState(item.Snippet.ChannelId)) { subscribe.Background = new SolidColorBrush(Colors.Transparent); subscribe.Foreground = new SolidColorBrush(Colors.Gray);