We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adf102d commit 8790bfcCopy full SHA for 8790bfc
1 file changed
packages/live-status-gateway/src/collections/notifications/notificationsHandler.ts
@@ -46,12 +46,8 @@ export class NotificationsHandler extends PublicationCollection<
46
this._rundownNotificationsHandler =
47
handlers.rundownNotificationsHandler as unknown as RundownNotificationsHandler
48
49
- if (this._playlistNotificationsHandler) {
50
- this._playlistNotificationsHandler.subscribe(this.onSourceUpdated)
51
- }
52
- if (this._rundownNotificationsHandler) {
53
- this._rundownNotificationsHandler.subscribe(this.onSourceUpdated)
54
+ this._playlistNotificationsHandler.subscribe(this.onSourceUpdated)
+ this._rundownNotificationsHandler.subscribe(this.onSourceUpdated)
55
}
56
57
protected changed(): void {
0 commit comments