Stop fetching user profile details now that is not necessary in file provider extension

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
Claudio Cambra 2024-09-30 16:05:50 +08:00
Родитель 4d7b3eeacb
Коммит 690303f952
1 изменённых файлов: 0 добавлений и 20 удалений

Просмотреть файл

@ -165,26 +165,6 @@ extension FileProviderExtension: NSFileProviderServicing, ChangeNotificationInte
remoteInterface: ncKit, changeNotificationInterface: self, domain: domain
)
ncKit.setup(delegate: changeObserver)
Task {
let (_, profile, _, error) = await ncKit.fetchUserProfile()
guard error == .success, let profile else {
// Note that since the authentication check checks for the user profile, this should
// not really occur
Logger.fileProviderExtension.error(
"""
Unable to get user profile for user \(user, privacy: .public)
at server \(serverUrl, privacy: .public)
error: \(error.errorDescription, privacy: .public)
"""
)
return
}
ncKit.setup(user: user, userId: profile.userId, password: password, urlBase: serverUrl)
semaphore.signal()
}
semaphore.wait()
signalEnumeratorAfterAccountSetup()
}