Hi Kyle,
I think there is a problem with CB Auto action Code.
I am using an auto action with PHP code as follow
$notification=[
"poster_id"=>'[var3_user_id]',
"asset"=> '[var3_asset]',
"message"=>"[var3_message]",
"pushType"=>"PushMainforum",
];
$notification=json_encode($notification);
include("socket/index.php");
Whenever I receive a string with double quotes e.g "hello I'am here now" under the key var3_message, the auto action does not work. It seems that the quotes are somehow affecting it.
Is there any way to stop this happening?