From c02005956c0fefb534fceea224b05fb54963a54d Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Tue, 23 Apr 2024 22:24:20 +0800 Subject: [PATCH] Use davUser instead of direct credentials user in file provider Signed-off-by: Claudio Cambra --- src/gui/macOS/fileprovidersocketcontroller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/macOS/fileprovidersocketcontroller.cpp b/src/gui/macOS/fileprovidersocketcontroller.cpp index 032ac22275031..42a66b46532a9 100644 --- a/src/gui/macOS/fileprovidersocketcontroller.cpp +++ b/src/gui/macOS/fileprovidersocketcontroller.cpp @@ -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();