MM-16829 Fix for sso with server subpaths (#2991)
This commit is contained in:
parent
0bd742bc50
commit
f8808b0eaf
1 changed files with 1 additions and 1 deletions
|
|
@ -175,7 +175,7 @@ class SSO extends PureComponent {
|
|||
onLoadEnd = (event) => {
|
||||
const url = event.nativeEvent.url;
|
||||
if (url.includes(this.completedUrl)) {
|
||||
CookieManager.get(urlParse(url).origin, this.useWebkit).then((res) => {
|
||||
CookieManager.get(this.props.serverUrl, this.useWebkit).then((res) => {
|
||||
const token = res.MMAUTHTOKEN;
|
||||
|
||||
if (token) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue