Skip to content
This repository has been archived by the owner on Aug 22, 2019. It is now read-only.

Commit

Permalink
backport rasa chat fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ricwo committed Mar 6, 2019
1 parent 6c3b2d8 commit 65201b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rasa_core/channels/rasa_chat.py
Expand Up @@ -29,7 +29,7 @@ def __init__(self, url, admin_token=None):
self.admin_token = admin_token

def _check_token(self, token):
url = "{}/users/me".format(self.base_url)
url = "{}/user".format(self.base_url)
headers = {"Authorization": token}
logger.debug("Requesting user information from auth server {}."
"".format(url))
Expand Down
3 changes: 1 addition & 2 deletions rasa_core/version.py
@@ -1,2 +1 @@

__version__ = '0.13.3'
__version__ = '0.13.4a0'

0 comments on commit 65201b7

Please sign in to comment.