diff options
author | Vitaly Takmazov | 2013-04-16 00:00:11 +0400 |
---|---|---|
committer | Vitaly Takmazov | 2013-04-16 00:00:11 +0400 |
commit | 72fff339e1652564c53d9c639c7af13617fb6fc9 (patch) | |
tree | 2b768e51606971442a784155c4e85edc9c900f2b /Juick/ViewModels | |
parent | e3409abca917fbc5fd49d6366276fff0e0f60d3e (diff) |
navigate to thread from toast
Diffstat (limited to 'Juick/ViewModels')
-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); |