We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9caff4c commit 5d326beCopy full SHA for 5d326be
static/js/actions.js
@@ -683,7 +683,7 @@ export function fetchUserProfile() {
683
dispatch,
684
FETCH_USER_PROFILE,
685
686
- fetch('/profile', {
+ fetch('/baselayer/profile', {
687
credentials: 'same-origin'
688
})
689
.then(response => response.json())
static/js/components/Main.jsx
@@ -299,7 +299,7 @@ class MainContent extends React.Component {
299
>
300
<WebSocket
301
url={`ws://${this.props.root}websocket`}
302
- auth_url={`${location.protocol}//${this.props.root}socket_auth_token`}
+ auth_url={`${location.protocol}//${this.props.root}baselayer/socket_auth_token`}
303
messageHandler={messageHandler}
304
dispatch={store.dispatch}
305
/>
0 commit comments