[FIX] Server with https:\\ instead of https:// (#1320)
This commit is contained in:
parent
2867f845df
commit
5d96cb2d02
|
@ -190,7 +190,7 @@ class NewServerView extends React.Component {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return url.replace(/\/+$/, '');
|
return url.replace(/\/+$/, '').replace(/\\/g, '/');
|
||||||
}
|
}
|
||||||
|
|
||||||
uriToPath = uri => uri.replace('file://', '');
|
uriToPath = uri => uri.replace('file://', '');
|
||||||
|
|
Loading…
Reference in New Issue