patchcord 0.5.62 → 0.5.63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchcord",
3
- "version": "0.5.62",
3
+ "version": "0.5.63",
4
4
  "description": "Cross-machine agent messaging for Claude Code and Codex",
5
5
  "author": "ppravdin",
6
6
  "license": "MIT",
@@ -432,8 +432,10 @@ function runOnce(ticket, baseUrl, token, refreshTicket) {
432
432
  return;
433
433
  }
434
434
  // Successful subscribe ack — log once for confirmation, then quiet.
435
+ // Replace Supabase's "Subscribed to PostgreSQL" with a user-facing label.
435
436
  if (status === "ok" && message) {
436
- logErr(`subscribe: system ok on ${frame.topic}: ${message}`);
437
+ const displayMsg = message.replace(/PostgreSQL/g, "Patchcord");
438
+ logErr(`subscribe: system ok on ${frame.topic}: ${displayMsg}`);
437
439
  }
438
440
  return;
439
441
  }