diff options
Diffstat (limited to 'src/plugins/docker/dockerdevice.h')
-rw-r--r-- | src/plugins/docker/dockerdevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/docker/dockerdevice.h b/src/plugins/docker/dockerdevice.h index b738ac41b05..0f929bdaf6c 100644 --- a/src/plugins/docker/dockerdevice.h +++ b/src/plugins/docker/dockerdevice.h @@ -41,7 +41,7 @@ public: bool canMount(const Utils::FilePath &filePath) const override { - return !filePath.needsDevice() || filePath.isSameDevice(rootPath()); + return filePath.isLocal() || filePath.isSameDevice(rootPath()); } bool handlesFile(const Utils::FilePath &filePath) const override; |