Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion harmony/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(self, token):
'feature_mechanisms': {'unencrypted_plain': True},
}
super(SwapAuthToken, self).__init__(
'guest@x.com', 'guest', plugin_config=plugin_config)
'guest@x.com/gatorade', 'guest', plugin_config=plugin_config)

self.token = token
self.uuid = None
Expand Down
2 changes: 1 addition & 1 deletion harmony/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class HarmonyClient(sleekxmpp.ClientXMPP):
"""An XMPP client for connecting to the Logitech Harmony."""

def __init__(self, auth_token):
user = '%s@x.com' % auth_token
user = '%s@x.com/gatorade' % auth_token
password = auth_token
plugin_config = {
# Enables PLAIN authentication which is off by default.
Expand Down