-
Notifications
You must be signed in to change notification settings - Fork 140
2.2.0 Pusher Options encrypted to forceTLS #255
New issue
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
Conversation
| */ | ||
| public PusherOptions setEncrypted(final boolean encrypted) { | ||
| this.encrypted = encrypted; | ||
| public PusherOptions setForceTLS(boolean forceTLS) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| public PusherOptions setForceTLS(boolean forceTLS) { | |
| public PusherOptions setForceTLS(final boolean forceTLS) { |
Just for consistency 🤷
Co-Authored-By: Mike Pye <mail@mdpye.co.uk>
Codecov Report
@@ Coverage Diff @@
## master #255 +/- ##
============================================
+ Coverage 75.90% 75.93% +0.02%
- Complexity 277 279 +2
============================================
Files 33 33
Lines 2415 2418 +3
Branches 112 112
============================================
+ Hits 1833 1836 +3
Misses 527 527
Partials 55 55
Continue to review full report at Codecov.
|
Description of the pull request
Refactored the PusherOption
encryptedtoforceTLS. Have annotated with@deprecatedthe previous methods to let existing people know....
Why is the change necessary?
The other libraries updated to
forceTLSto reduce confusion between private encrypted channels....
CC @pusher/mobile