Skip to content

Commit

Permalink
don't 'forget' the identity
Browse files Browse the repository at this point in the history
  • Loading branch information
dovholuknf committed Oct 4, 2024
1 parent a24280d commit 5bbb188
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions DesktopEdge/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,10 @@ private void ServiceClient_OnIdentityEvent(object sender, IdentityEvent e) {
}
}
LoadIdentities(true);
} else if (e.Action == "needs_ext_login") {
logger.Debug("needs_ext_login action received"); //handled through identity event at the moment (forever?)
} else {
logger.Warn("unexpected action received: {}", e.Action);
IdentityForgotten(ZitiIdentity.FromClient(e.Id));
}
});
Expand Down

0 comments on commit 5bbb188

Please sign in to comment.