diff options
Diffstat (limited to 'Juick/ViewModels/AppViewModel.cs')
-rw-r--r-- | Juick/ViewModels/AppViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Juick/ViewModels/AppViewModel.cs b/Juick/ViewModels/AppViewModel.cs index 29e2a6b..7d5006c 100644 --- a/Juick/ViewModels/AppViewModel.cs +++ b/Juick/ViewModels/AppViewModel.cs @@ -144,7 +144,7 @@ namespace Juick.ViewModels if (!Account.IsAuthenticated) return; Client.Authenticator = new HttpBasicAuthenticator(Account.UserName, Account.Password); Debug.WriteLine(Url.ToString()); - if (string.IsNullOrEmpty(Account.NotificationUri) || Account.NotificationUri != Url) + if (string.IsNullOrEmpty(Account.NotificationUri) || Account.NotificationUri == Url) { Account.NotificationUri = Url; RegisterNotificationUrl(Url); |