Commit caddb16 1 parent 57461f3 commit caddb16 Copy full SHA for caddb16
File tree 2 files changed +0
-4
lines changed
2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -66,8 +66,6 @@ var LivePG = (function (_EventEmitter) {
66
66
67
67
common . performQuery ( this . notifyHandle . client , 'LISTEN "' + this . channel + '"' ) [ 'catch' ] ( this . _error ) ;
68
68
69
- // Cache partial payloads in this closure
70
-
71
69
this . notifyHandle . client . on ( 'notification' , function ( info ) {
72
70
if ( info . channel === _this . channel ) {
73
71
var payload = _this . _processNotification ( info . payload ) ;
Original file line number Diff line number Diff line change @@ -33,8 +33,6 @@ class LivePG extends EventEmitter {
33
33
common . performQuery ( this . notifyHandle . client , `LISTEN "${ this . channel } "` )
34
34
. catch ( this . _error )
35
35
36
- // Cache partial payloads in this closure
37
-
38
36
this . notifyHandle . client . on ( 'notification' , info => {
39
37
if ( info . channel === this . channel ) {
40
38
var payload = this . _processNotification ( info . payload )
You can’t perform that action at this time.
0 commit comments