diff options
author | Vitaly Takmazov | 2018-12-12 15:47:28 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:54 +0300 |
commit | e7b32a80cdcf0fa9ca97c14cda33db6d81b451d6 (patch) | |
tree | 3d0e53fcf47757bb02e2b44a94679b4f74b3a867 /vnext/src/api | |
parent | 0c31e9ae31403beb3c390e864f0aae653240868d (diff) |
read/readers
Diffstat (limited to 'vnext/src/api')
-rw-r--r-- | vnext/src/api/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/api/index.js b/vnext/src/api/index.js index 9bb9d5a3..46efa159 100644 --- a/vnext/src/api/index.js +++ b/vnext/src/api/index.js @@ -32,7 +32,7 @@ export function me(username = '', password = '') { } export function info(username) { - return client.get(`/users?uname=${username}`); + return client.get(`/info/${username}`); } export function getChats() { |