Merge branch 'master' into fsfallback

pull/2113/head
bunsenstraat 3 years ago committed by GitHub
commit 43d15c8ad1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      apps/remix-ide/src/app/files/workspaceFileProvider.js

@ -32,6 +32,7 @@ class WorkspaceFileProvider extends FileProvider {
removePrefix (path) { removePrefix (path) {
path = path.replace(/^\/|\/$/g, '') // remove first and last slash path = path.replace(/^\/|\/$/g, '') // remove first and last slash
path = path.replace(/^\.\/+/, '') // remove ./ from start of string
if (path.startsWith(this.workspacesPath + '/' + this.workspace)) return path if (path.startsWith(this.workspacesPath + '/' + this.workspace)) return path
const splitPath = path.split('/') const splitPath = path.split('/')

Loading…
Cancel
Save