diff --git a/kernel/util/working.go b/kernel/util/working.go index 005066824..7d296f077 100644 --- a/kernel/util/working.go +++ b/kernel/util/working.go @@ -207,7 +207,6 @@ func initWorkspaceDir(workspaceArg string) { } var workspacePaths []string - var cloudDrive bool // 启动时移除处于网盘路径下的工作空间 https://github.com/siyuan-note/siyuan/issues/7790 if !gulu.File.IsExist(workspaceConf) { WorkspaceDir = defaultWorkspaceDir if "" != workspaceArg { @@ -215,16 +214,6 @@ func initWorkspaceDir(workspaceArg string) { } } else { workspacePaths, _ = ReadWorkspacePaths() - var tmp []string - for _, workspacePath := range workspacePaths { - if IsCloudDrivePath(workspacePath) { - logging.LogWarnf("skip the cloud drive path [%s]", workspacePath) - cloudDrive = true - continue - } - tmp = append(tmp, workspacePath) - } - workspacePaths = tmp if 0 < len(workspacePaths) { // 取最后一个(也就是最近打开的)工作空间 @@ -249,10 +238,6 @@ func initWorkspaceDir(workspaceArg string) { os.Exit(logging.ExitCodeInitWorkspaceErr) } - if cloudDrive { - os.Exit(logging.ExitCodeFileSysErr) - } - ConfDir = filepath.Join(WorkspaceDir, "conf") DataDir = filepath.Join(WorkspaceDir, "data") RepoDir = filepath.Join(WorkspaceDir, "repo")