Not receiving notification 1.3.1
See original GitHub issueAfter I updated to v1.3.1 it my echo on client side not working i.e. I was listening to private channel
on notification which is not getting executed.
which was working fine previously. below is the code
Echo.private('user.' + User.id)
.notification((notification) => {
console.debug('Notification received ', notification);
});
but after digging for sometime if I do something like this I can get the event but it feels dirty
.listen('Illuminate\\Notifications\\Events\\BroadcastNotificationCreated', (e) => {
console.log('Event Notification received ', e)
})
and here is my EchoInstance
const EchoInstance = new Echo({
broadcaster: 'socket.io',
host: window.location.hostname + ':6001',
namespace: 'booking_app.Events',
});
Issue Analytics
- State:
- Created 6 years ago
- Reactions:6
- Comments:14
Top Results From Across the Web
how to fix app notifications not working on android - YouTube
how to fix app notifications not working on android | | how to fix notification problem | samsung m51 how to fix not...
Read more >Fixed: Notification not Showing on Android! - YouTube
Recently I was not getting any notifications on my Android phone. While researching solutions for it, I saw many people are facing ...
Read more >iOS 16 Not Showing Notifications on Lock screen! [Not Getting]
After the iOS 16 update, not getting Notification alerts on iPhone, or not showing notifications Preview when Screen Lock or Unlock?
Read more >Fix iMessage Notifications are Not Working [Text ... - YouTube
If iMessages notification or text alerts are not showing up on your iPhone, in this video tutorial, you will learn some of the...
Read more >How to Fix iOS 16 Not Showing Notifications on iPhone Lock ...
... up on iPhone iPhone lock screen after iOS 16, why are my notifications not showing up on iPhone 14 Pro max, iPhone...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
there’s an hour i’ll never get back 😦
running 1.3.2 and it’s not fixed, in the sense that my app with dot notation needed to be changed to escaped slashes
thanks @sietzekeuning for the solution
this got fixed in v1.3.2