Merge pull request #128 from Moonlight-Panel/FixIpBanUpdate
Reload instead of rerender sessions when ip banned
This commit is contained in:
@@ -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();
|
||||||
|
|||||||
Reference in New Issue
Block a user