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;