Skip to content

Commit

Permalink
File separator hard coded in HopVfsFileDialog apache#3614
Browse files Browse the repository at this point in the history
  • Loading branch information
nadment committed Feb 7, 2024
1 parent 18ccdf6 commit f29546c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,7 @@ public void navigateTo(String filename, boolean saveHistory) {
// First call, set to filter path plus saveFilename
//
if (StringUtils.isNotEmpty(filterPath)) {
wFilename.setText(filterPath + "/" + saveFilename);
wFilename.setText(filterPath + Const.FILE_SEPARATOR + saveFilename);
}
}

Expand Down

0 comments on commit f29546c

Please sign in to comment.