mirror of
				https://github.com/SquidDev-CC/CC-Tweaked
				synced 2025-10-31 13:42:59 +00:00 
			
		
		
		
	Fix FileSystemWrapperMount.isDirectory()
Pretty sure FileSystemWrapperMount.isDirectory() should call Filesystem.isDir(), not Filesystem.exists()
This commit is contained in:
		| @@ -124,7 +124,7 @@ public class FileSystemWrapperMount implements IFileSystem | |||||||
|     { |     { | ||||||
|         try |         try | ||||||
|         { |         { | ||||||
|             return m_filesystem.exists( path ); |             return m_filesystem.isDir( path ); | ||||||
|         } |         } | ||||||
|         catch( FileSystemException e ) |         catch( FileSystemException e ) | ||||||
|         { |         { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Bluenaxela
					Bluenaxela