1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-30 04:29:12 +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"];
if (!isset($listeners[$channel])) {
return;
continue;
}
$notification = new Notification;