Skip to content

Commit

Permalink
Merge pull request #6670 from nextcloud/bugfix/dav-user-fileprovider
Browse files Browse the repository at this point in the history
Use davUser instead of direct credentials user in file provider
  • Loading branch information
claucambra authored Apr 23, 2024
2 parents c0af76c + 80afd8e commit 03fe649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/macOS/fileprovidersocketcontroller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 03fe649

Please sign in to comment.