#3857 pusher error

This commit is contained in:
diashalabi 2021-09-27 09:19:23 +03:00
parent 654b277823
commit f4064fa221
2 changed files with 9 additions and 5 deletions

View File

@ -1,4 +1,4 @@
$('.categories-list .show-all').on('click', function () {
$(this).siblings('.hidden-category').toggleClass('hidden')
$(this).find('a span').toggleClass('hidden')
})
$(this).siblings('.hidden-category').toggleClass('hidden');
$(this).find('a span').toggleClass('hidden');
});

View File

@ -37,10 +37,14 @@ return [
'app_id' => env('PUSHER_APP_ID'),
'options' => [
'cluster' => env('PUSHER_APP_CLUSTER'),
'encrypted' => false,
'encrypted' => true,
'host' => '127.0.0.1',
'port' => 6001,
'scheme' => 'http'
'scheme' => 'https',
'curl_options' => [
CURLOPT_SSL_VERIFYHOST => 0,
CURLOPT_SSL_VERIFYPEER => 0,
]
],
],