You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2021/06/18 12:36:51 UTC

[incubator-hop] branch master updated: HOP-2967 : Non-local folders for projects are not working

This is an automated email from the ASF dual-hosted git repository.

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 3ae9255  HOP-2967 : Non-local folders for projects are not working
     new faec0a0  Merge pull request #883 from mattcasters/master
3ae9255 is described below

commit 3ae9255ce2c7a4a4735c88ef2c640485038883a9
Author: Matt Casters <ma...@gmail.com>
AuthorDate: Fri Jun 18 14:33:57 2021 +0200

    HOP-2967 : Non-local folders for projects are not working
---
 .../apache/hop/ui/hopgui/perspective/explorer/ExplorerPerspective.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/main/java/org/apache/hop/ui/hopgui/perspective/explorer/ExplorerPerspective.java b/ui/src/main/java/org/apache/hop/ui/hopgui/perspective/explorer/ExplorerPerspective.java
index aaf05e6..b2a147d 100644
--- a/ui/src/main/java/org/apache/hop/ui/hopgui/perspective/explorer/ExplorerPerspective.java
+++ b/ui/src/main/java/org/apache/hop/ui/hopgui/perspective/explorer/ExplorerPerspective.java
@@ -953,7 +953,7 @@ public class ExplorerPerspective implements IHopPerspective {
           // Recursively add children
           //
           if (child.isFolder()) {
-            refreshFolder(childItem, child.getName().getPath());
+            refreshFolder(childItem, child.getName().getURI());
           }
         }
       }