Commit 469c3fe3 authored by ioedeveloper's avatar ioedeveloper

Catch undefined exception of filesProviders

parent 8b19c1fc
...@@ -612,9 +612,11 @@ class FileManager extends Plugin { ...@@ -612,9 +612,11 @@ class FileManager extends Plugin {
} }
currentWorkspace () { currentWorkspace () {
const provider = self._deps.filesProviders.workspace if (self._deps) {
const provider = self._deps.filesProviders.workspace
return provider.workspace return provider.workspace
}
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment