Archived
1
0

Broke everything; #220: Fixed

This commit is contained in:
Michael Gordeev
2018-12-09 13:41:00 +03:00
parent 1a6447a4aa
commit f16be876c6
19 changed files with 201 additions and 145 deletions
+4 -1
View File
@@ -82,8 +82,11 @@ namespace FoxTube.Controls
}
catch { }
if(SecretsVault.UserHistory.Contains(videoId))
if(SecretsVault.UserHistory.Exists(x => x.Id == videoId))
{
watched.Visibility = Visibility.Visible;
leftOn.Value = SecretsVault.UserHistory.Find(x => x.Id == videoId).LeftOn;
}
}
public async void Button_Click(object sender, RoutedEventArgs e)