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 +1 -1
- package/scripts/subscribe.mjs +3 -1
package/package.json
CHANGED
package/scripts/subscribe.mjs
CHANGED
|
@@ -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
|
-
|
|
437
|
+
const displayMsg = message.replace(/PostgreSQL/g, "Patchcord");
|
|
438
|
+
logErr(`subscribe: system ok on ${frame.topic}: ${displayMsg}`);
|
|
437
439
|
}
|
|
438
440
|
return;
|
|
439
441
|
}
|