Archived
1
0

Notification system development 1

This commit is contained in:
Michael Gordeev
2018-10-24 21:23:48 +03:00
parent f545edc6c1
commit 1a93ea4801
2 changed files with 25 additions and 3 deletions
+2 -1
View File
@@ -74,7 +74,7 @@ namespace FoxTube
if (settings.Values["ver"] == null)
settings.Values.Add("ver", $"{ver.Major}.{ver.Minor}");
if((string)settings.Values["ver"] != $"{ver.Major}.{ver.Minor}") //Replace for '!=' !!!
if((string)settings.Values["ver"] == $"{ver.Major}.{ver.Minor}") //Replace for '!=' !!!
{
try
{
@@ -91,6 +91,7 @@ namespace FoxTube
SecretsVault.AuthorizationStateChanged += Vault_AuthorizationStateChanged;
SecretsVault.SubscriptionsChanged += SecretsVault_SubscriptionsChanged;
SecretsVault.CheckAuthorization();
SetTitleBar();
}