[FIX] Server with https:\\ instead of https:// (#1320)

This commit is contained in:
Djorkaeff Alexandre 2019-10-23 16:28:24 -03:00 committed by Guilherme Gazzo
parent 2867f845df
commit 5d96cb2d02
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ class NewServerView extends React.Component {
}
}
return url.replace(/\/+$/, '');
return url.replace(/\/+$/, '').replace(/\\/g, '/');
}
uriToPath = uri => uri.replace('file://', '');