Merge pull request #6670 from nextcloud/bugfix/dav-user-fileprovider

Use davUser instead of direct credentials user in file provider
This commit is contained in:
Claudio Cambra 2024-04-23 23:55:33 +08:00 committed by GitHub
commit 03fe6494e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -200,7 +200,7 @@ void FileProviderSocketController::sendAccountDetails() const
const auto credentials = account->credentials();
Q_ASSERT(credentials);
const auto accountUser = credentials->user();
const auto accountUser = account->davUser();
const auto accountUrl = account->url().toString();
const auto accountPassword = credentials->password();