Fixed: Blank Page after Delete for Index/Editor (Avoid null broadcasts)

This commit is contained in:
Qstick 2021-01-24 20:51:58 -05:00
parent 77b565c882
commit e6489eaca3
2 changed files with 6 additions and 1 deletions

View File

@ -138,6 +138,11 @@ class SignalRConnector extends Component {
const handler = this[getHandlerName(name)];
if (body && body.action === 'updated' && !body.resource) {
console.error(`signalR: Null resource broadcast ignored for ${name}`);
return;
}
if (handler) {
handler(body);
return;

View File

@ -58,7 +58,7 @@ namespace Lidarr.Http
protected void BroadcastResourceChange(ModelAction action, TResource resource)
{
if (!_signalRBroadcaster.IsConnected)
if (!_signalRBroadcaster.IsConnected || resource == null)
{
return;
}