Fribb / MyAnimeList.bundle

Plex Media Server Metadata Agent for MyAnimeList.net
147 stars 15 forks source link

SSLV3_ALERT_HANDSHAKE_FAILURE #14

Closed Fribb closed 4 years ago

Fribb commented 4 years ago

There is an error in line 163 of the myanimelist.py getData method

response = urllib2.urlopen(request, context=ssl.SSLContext(ssl.PROTOCOL_TLSv1))

the requested image URL uses TLSv1.2 and not TLSv1.

Fribb commented 4 years ago

changed PROTOCOL_TLSv1 to PROTOCOL_SSLv23