We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8ba04f commit fd256c8Copy full SHA for fd256c8
Cryptomator/VaultDetail/VaultDetailViewModel.swift
@@ -270,7 +270,9 @@ class VaultDetailViewModel: VaultDetailViewModelProtocol {
270
}
271
272
private func vaultIsEligibleToMove() -> Bool {
273
- if case CloudProviderType.localFileSystem = vaultInfo.cloudProviderType {
+ if vaultInfo.vaultConfigType == .hub {
274
+ return false
275
+ } else if case CloudProviderType.localFileSystem = vaultInfo.cloudProviderType {
276
return false
277
278
return vaultInfo.vaultPath != CloudPath("/")
0 commit comments