diff --git a/data/interfaces/default/js/script.js b/data/interfaces/default/js/script.js index 14e12b06..2df5daeb 100644 --- a/data/interfaces/default/js/script.js +++ b/data/interfaces/default/js/script.js @@ -619,7 +619,7 @@ function getPlexHeaders(clientID) { 'X-Plex-Platform-Version': p.version, 'X-Plex-Model': 'Plex OAuth', 'X-Plex-Device': p.os, - 'X-Plex-Device-Name': p.name, + 'X-Plex-Device-Name': p.name + ' (Tautulli)', 'X-Plex-Device-Screen-Resolution': window.screen.width + 'x' + window.screen.height, 'X-Plex-Language': 'en' }; diff --git a/plexpy/http_handler.py b/plexpy/http_handler.py index 6672e050..974b9ce4 100644 --- a/plexpy/http_handler.py +++ b/plexpy/http_handler.py @@ -60,7 +60,8 @@ class HTTPHandler(object): 'X-Plex-Platform-Version': plexpy.common.PLATFORM_RELEASE, 'X-Plex-Device': '{} {}'.format(plexpy.common.PLATFORM, plexpy.common.PLATFORM_RELEASE), - 'X-Plex-Device-Name': plexpy.common.PLATFORM_DEVICE_NAME + 'X-Plex-Device-Name': '{} ({})'.format(plexpy.common.PLATFORM_DEVICE_NAME, + plexpy.common.PRODUCT) } self.token = token