Review fixes based on comments
Signed-off-by: Antoine Mazeas <antoine@karthanis.net>
This commit is contained in:
parent
3aadf0c2a9
commit
f65f4c540b
2 changed files with 2 additions and 4 deletions
|
@ -14,7 +14,7 @@
|
|||
// You should have received a copy of the GNU Affero General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
var BASE_PATH = "/_matrix/maubot/v1"
|
||||
let BASE_PATH = "/_matrix/maubot/v1"
|
||||
|
||||
export function setBasePath(basePath) {
|
||||
BASE_PATH = basePath
|
||||
|
@ -245,7 +245,6 @@ export async function doClientAuth(server, type, username, password) {
|
|||
}
|
||||
|
||||
export default {
|
||||
BASE_PATH,
|
||||
login, ping, setBasePath, getFeatures, remoteGetFeatures,
|
||||
openLogSocket,
|
||||
debugOpenFile, debugOpenFileEnabled, updateDebugOpenFileEnabled,
|
||||
|
|
|
@ -47,10 +47,9 @@ class Main extends Component {
|
|||
})
|
||||
const apiPathJson = await resp.json()
|
||||
const apiPath = apiPathJson.api_path
|
||||
console.log(apiPath)
|
||||
api.setBasePath(`${apiPath}`)
|
||||
} catch (err) {
|
||||
console.error(err)
|
||||
console.error("Failed to get API path:", err)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue