Skip to content

Commit

Permalink
Merge pull request nextcloud#5613 from nextcloud/bugfix/sharees-parse…
Browse files Browse the repository at this point in the history
…-lookup

Parse sharees 'lookup' key to include federated sharees.
  • Loading branch information
allexzander authored Apr 24, 2023
2 parents 167b5db + 6bb0640 commit 8ef2154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/filedetails/shareemodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ void ShareeModel::shareesFetched(const QJsonDocument &reply)

QVector<ShareePtr> newSharees;

const QStringList shareeTypes {"users", "groups", "emails", "remotes", "circles", "rooms"};
const QStringList shareeTypes{"users", "groups", "emails", "remotes", "circles", "rooms", "lookup"};

const auto appendSharees = [this, &shareeTypes, &newSharees](const QJsonObject &data) {
for (const auto &shareeType : shareeTypes) {
Expand Down

0 comments on commit 8ef2154

Please sign in to comment.