Compare commits
2 Commits
v2.5.1-bet
...
v2.5.2-bet
Author | SHA1 | Date | |
---|---|---|---|
![]() |
cb577c51b8 | ||
![]() |
1c395ab10c |
@@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v2.5.2-beta (2020-06-27)
|
||||||
|
|
||||||
|
* Other:
|
||||||
|
* Fix: Login to Tautulli not working on Python 2.
|
||||||
|
|
||||||
|
|
||||||
## v2.5.1-beta (2020-06-26)
|
## v2.5.1-beta (2020-06-26)
|
||||||
|
|
||||||
* Notifications:
|
* Notifications:
|
||||||
|
@@ -18,4 +18,4 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
PLEXPY_BRANCH = "beta"
|
PLEXPY_BRANCH = "beta"
|
||||||
PLEXPY_RELEASE_VERSION = "v2.5.1-beta"
|
PLEXPY_RELEASE_VERSION = "v2.5.2-beta"
|
@@ -41,6 +41,13 @@ else:
|
|||||||
from plexpy.users import Users, refresh_users
|
from plexpy.users import Users, refresh_users
|
||||||
from plexpy.plextv import PlexTV
|
from plexpy.plextv import PlexTV
|
||||||
|
|
||||||
|
# Monkey patch SameSite support into cookies.
|
||||||
|
# https://stackoverflow.com/a/50813092
|
||||||
|
try:
|
||||||
|
from http.cookies import Morsel
|
||||||
|
except ImportError:
|
||||||
|
from Cookie import Morsel
|
||||||
|
Morsel._reserved[str('samesite')] = str('SameSite')
|
||||||
|
|
||||||
JWT_ALGORITHM = 'HS256'
|
JWT_ALGORITHM = 'HS256'
|
||||||
JWT_COOKIE_NAME = 'tautulli_token_'
|
JWT_COOKIE_NAME = 'tautulli_token_'
|
||||||
|
Reference in New Issue
Block a user