Our FileSystemProvider currently only supports directory URIs that don't end with a slash (for example, isfs://iris:USER/User works but isfs://iris:USER/User/ always returns no contents). This PR fixes that bug by removing the trailing slash during processing if it's present. This bug is most clearly seen when trying to open a file using Ctrl-O. The Simple File dialog is shown, and when you try to see the contents of a directory that you haven't already expanded in the File Explorer, you get no results.
Our
FileSystemProvider
currently only supports directory URIs that don't end with a slash (for example,isfs://iris:USER/User
works butisfs://iris:USER/User/
always returns no contents). This PR fixes that bug by removing the trailing slash during processing if it's present. This bug is most clearly seen when trying to open a file usingCtrl-O
. The Simple File dialog is shown, and when you try to see the contents of a directory that you haven't already expanded in the File Explorer, you get no results.