Benjamin Tang

Results 16 comments of Benjamin Tang

Can you paste the error message and the stacktrace? Could you also provide more information on how to reproduce this? Normally you should not be getting this exception.

I can reproduce this; I will ask around and find out why this is.

Hi, we have a known issue https://github.com/pusher/pusher-channels-flutter/issues/38 where hot reloading causes the android client to error with `I/flutter ( 6421): Pusher ERR: PlatformException(PusherChannelsFlutter, Pusher Channels already initialized., null, null)` There...

I tested switching screens with `Navigator.push()` and then back again with `Navigator.pop`, and it received messages ok afterwards. I noticed you have a .pop but no .push in your code....

Did you initialise your Pusher instance in your second screen? I suspect it doesn't work for in @Jalalajlan's code because he initialised Pusher in his _ChatPageState which looks like a...

Pusher Channels works fine in Laravel 9. If you are using Laravel, Instead of your $this->broadcast->pusher->trigger, can you use [Laravel's broadcast(new someEvent(...))->toOthers() ](https://laravel.com/docs/9.x/broadcasting#only-to-others)instead?

Our 7.0.2 pusher-http-php supports 8.1.8 running on my machine. It looks like you've specified an old version ^3, but we don't support that old a version anymore.

When I call `channels_client.send_to_user("123", "user-event", {"message": "hello worlds"})` I get this error (although the message goes through to my client) ``` File "/Users/benjamintang/development/python/channels/app.py", line 124, in send_to_user channels_client.send_to_user("123", "user-event", {"message":...

Whoops, I forgot about that decorator. I gave it another test and it works now. I will ask the team to review it.