Closed EquineSolutions closed 1 year ago
@EquineSolutions , Well, you are not supposed to receive raw List
in Pusher Protocol. Please, give an example of event or message that comes from your server side to understand your use-case.
Well, if we are not supposed to receive raw List in Pusher Protocol, then it's my problem, although it works int he browser with laravel pusher client, you can close this issue, keep up the good work
@EquineSolutions , could you please share an example message coming from your server? And we will sort it out
I am preparing a big update with refactoring. I guess I know what you need. data
inside the root object may not always be a Map
, I hadn't considered it. Just wait for a new big update.
@kerimamansaryyev exactly, i think you should just pass the json data as a plain text.
@EquineSolutions Hey, checkout the new version (1.0.0
) with new documentation! I am sure it should fix the issue.
@EquineSolutions , have you checked the update?
@EquineSolutions , Closing this issue due to inactivity. Please, check out the new version. If it does not solve the issue - feel free to reopen it.
i think the problem is coming from the fact that jsonize function only returns a map
Map jsonize(raw) { Map data; if (raw is String) { data = jsonDecode(raw); } else { data = {}; } return data; }