mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Fixed: Blank Page after Delete for Index/Editor (Avoid null broadcasts)
This commit is contained in:
parent
77b565c882
commit
e6489eaca3
2 changed files with 6 additions and 1 deletions
|
@ -58,7 +58,7 @@ namespace Lidarr.Http
|
|||
|
||||
protected void BroadcastResourceChange(ModelAction action, TResource resource)
|
||||
{
|
||||
if (!_signalRBroadcaster.IsConnected)
|
||||
if (!_signalRBroadcaster.IsConnected || resource == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue