-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9df2421
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.
That's not how you fix SSL ... :-/
9df2421
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.
In this case, yes it is.
Kodi 16.1 have issues with SSL/TLS, which our plugin can't fix. Not in a way that we can figure out
And since there is no secrets exchanged, we decided to downgrade to unencrypted transports, rather than forcing our users upgrade to kodi 17.
The issue is here
I've done a little digging as I remember it is only kodi 16 that have this issue, and the SSL feature broke in kodi 16.1. it seems to be a problem in pyOpenssl. Upstream Issue here: pyca/pyopenssl#542
9df2421
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.
@solbu is correct, and perhaps just the commit message is misleading - we didn't "fix SSL" - we made the channel work across all versions of Kodi by disabling SSL (which it has trouble with). It is obtaining video and RSS content only - there is no information sent to the server and therefore absolutely no reason to require SSL in this case. We'd rather it be using https just because that's how our infrastructure is setup, but if Kodi doesn't work with it, our hands are tied and at least this fixes the issue people were having.