szed
05/02/2022, 9:13 PMconst sub = this.$supabase
.from("actions")
.on("*", (data) => {
console.log(data);
})
.subscribe();
console.log(sub);
My subscription look like this. The console.log(sub)
shows that's it's seems to be ok and joined
- Replication on my table is enabled, I can see under the websocket tab the events occuring, and i can see the subscription being created under the realtime schema in the Supabase Table's UI.
So everything seems good, but i'm never reaching the callback. Nothing happen.
I though it could be because of some RLS rules, but even with it being disabled on my table, nothing.
Stack in Nuxt 2.x and this is inside a mounted
method on my Index
page. And i'm using my anon/public key
Any idea? 🙏garyaustin
05/02/2022, 9:34 PMszed
05/02/2022, 9:38 PMgaryaustin
05/02/2022, 9:39 PMszed
05/02/2022, 9:40 PMgaryaustin
05/02/2022, 9:41 PMszed
05/02/2022, 9:41 PM.on("*", (data) => {
console.log(data);
})
I don't seems to be entering the fallbackgaryaustin
05/02/2022, 9:43 PMszed
05/02/2022, 9:44 PMgaryaustin
05/02/2022, 9:44 PMszed
05/02/2022, 9:45 PMgaryaustin
05/02/2022, 9:46 PMszed
05/02/2022, 9:47 PMszed
05/02/2022, 9:48 PMgaryaustin
05/02/2022, 9:49 PMszed
05/02/2022, 9:50 PMgaryaustin
05/02/2022, 9:52 PMszed
05/02/2022, 9:52 PMszed
05/02/2022, 9:52 PMgaryaustin
05/02/2022, 9:52 PMszed
05/02/2022, 9:53 PM