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

View File

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