id is not required on every message (notably init)
This commit is contained in:
@@ -32,8 +32,8 @@
|
||||
|
||||
// subscription
|
||||
(async () => {
|
||||
const onNext = () => {
|
||||
console.log("Subscription data")
|
||||
const onNext = (data) => {
|
||||
console.log("Subscription data:", data);
|
||||
};
|
||||
|
||||
await new Promise((resolve, reject) => {
|
||||
|
||||
Reference in New Issue
Block a user