Skip to content

Commit

Permalink
Fix login error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
WamWooWam committed Nov 23, 2024
1 parent 464e7a0 commit d4ecd79
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion UniSky/ViewModels/LoginViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ private async Task Login()
}
catch (Exception ex)
{
Error = new ExceptionViewModel(ex);
syncContext.Post(() =>
Error = new ExceptionViewModel(ex));
}
}

Expand Down

0 comments on commit d4ecd79

Please sign in to comment.