Skip to content

Commit

Permalink
fix(lds): correct the set of LDS announcement types handled (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepijnverburg authored and benjie committed Jun 3, 2019
1 parent e68291b commit dde59fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/subscriptions-lds/src/PgLDSSourcePlugin.ts
Expand Up @@ -260,7 +260,8 @@ export class LDSLiveSource {
const messageString = message.toString("utf8");
const payload = JSON.parse(messageString);
switch (payload._) {
case "insert":
case "insertC":
case "updateC":
case "update":
case "delete":
return this.handleAnnouncement(payload);
Expand Down

0 comments on commit dde59fa

Please sign in to comment.