Merge pull request #128 from Moonlight-Panel/FixIpBanUpdate

Reload instead of rerender sessions when ip banned
This commit is contained in:
Marcel Baumgartner 2023-05-22 23:18:39 +02:00 committed by GitHub
commit 6a58275681
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -194,10 +194,10 @@
if(IsIpBanned)
await InvokeAsync(StateHasChanged);
await Event.On<Object>("ipBan.update", this, async o =>
await Event.On<Object>("ipBan.update", this, async _ =>
{
IsIpBanned = await IpBanService.IsBanned();
await InvokeAsync(StateHasChanged);
NavigationManager.NavigateTo(NavigationManager.Uri, true);
});
User = await IdentityService.Get();