diff --git a/CHANGELOG.md b/CHANGELOG.md index c6e1aec41..e4dffeafd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ All notable changes to the Zowe™ Explorer plug-in for IntelliJ IDEA™ will be * Bugfix: Topics handling ([25606368](https://github.com/zowe/zowe-explorer-intellij/commit/25606368)) * Bugfix: Zowe config v2 handling ([fd79b908](https://github.com/zowe/zowe-explorer-intellij/commit/fd79b908)) * Bugfix: JES Explorer bug when ABEND job is being displayed ([614aa6cf](https://github.com/zowe/zowe-explorer-intellij/commit/614aa6cf)) +* Bugfix: Conflicting VFS name ([63596855](https://github.com/zowe/zowe-explorer-intellij/commit/63596855)) * Bugfix: GitHub issue #167: Zowe explorer config is not converted ([b5eae7a2](https://github.com/zowe/zowe-explorer-intellij/commit/b5eae7a2)) ## `1.1.1 (2023-11-23)` diff --git a/build.gradle.kts b/build.gradle.kts index b395f76a1..6db09de3a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -117,6 +117,7 @@ tasks {
  • Topics handling
  • Zowe config v2 handling
  • JES Explorer bug when ABEND job is being displayed
  • +
  • Conflicting VFS name
  • GitHub issue #167: Zowe explorer config is not converted
  • """ ) diff --git a/src/main/kotlin/org/zowe/explorer/vfs/MFVirtualFileSystemModel.kt b/src/main/kotlin/org/zowe/explorer/vfs/MFVirtualFileSystemModel.kt index 9314ba12c..60381d2ef 100755 --- a/src/main/kotlin/org/zowe/explorer/vfs/MFVirtualFileSystemModel.kt +++ b/src/main/kotlin/org/zowe/explorer/vfs/MFVirtualFileSystemModel.kt @@ -53,7 +53,7 @@ enum class FSEdgeType { } } -private const val VFS_CONTENT_STORAGE_NAME = "mf_vfs_contents" +private const val VFS_CONTENT_STORAGE_NAME = "zowe_mf_vfs_contents" class FSEdge @JvmOverloads constructor(val type: FSEdgeType = FSEdgeType.DIR)