Преглед изворни кода

Added smb in path exists bypass

Toby Chui пре 3 година
родитељ
комит
43e4ee4d8c
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      mod/filesystem/arozfs/arozfs.go

+ 1 - 1
mod/filesystem/arozfs/arozfs.go

@@ -67,7 +67,7 @@ func NewRedirectionError(targetVpath string) error {
 
 //Check if a file system is network drive
 func IsNetworkDrive(fstype string) bool {
-	if fstype == "webdav" || fstype == "ftp" {
+	if fstype == "webdav" || fstype == "ftp" || fstype == "smb" {
 		return true
 	}