1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-03 09:57:48 +01:00

Fix notification loop if listener unset

This commit is contained in:
Aaron Piotrowski 2017-08-01 23:26:27 -05:00
parent 202caf8552
commit 1f146e31f6
No known key found for this signature in database
GPG Key ID: ADD1EF783EDE9EEB

View File

@ -64,7 +64,7 @@ class PgSqlHandle implements Handle {
$channel = $result["message"]; $channel = $result["message"];
if (!isset($listeners[$channel])) { if (!isset($listeners[$channel])) {
return; continue;
} }
$notification = new Notification; $notification = new Notification;