We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling echo.encryptedPrivate(…) while using a NullConnector results in an error:
echo.encryptedPrivate(…)
Uncaught TypeError: this.connector.encryptedPrivateChannel is not a function
This is caused by line https://github.com/laravel/echo/blob/master/src/echo.ts#L107 as a NullConnector does not have an encryptedPrivateChannel function.
encryptedPrivateChannel
The text was updated successfully, but these errors were encountered:
Add an encrypedPrivateChannel function to the NullConnector.
encrypedPrivateChannel
1fd4503
Fixes laravel#367
Thanks, you sent in a PR so let's see how it goes.
Sorry, something went wrong.
Add an encrypedPrivateChannel function to the NullConnector. (#369)
9d156f7
Fixes #367 Co-authored-by: Marcus <[email protected]>
Successfully merging a pull request may close this issue.
Description:
Calling
echo.encryptedPrivate(…)
while using a NullConnector results in an error:This is caused by line https://github.com/laravel/echo/blob/master/src/echo.ts#L107 as a NullConnector does not have an
encryptedPrivateChannel
function.Steps To Reproduce:
The text was updated successfully, but these errors were encountered: