show only 'shared with you by...' if it's not the current user itself

Signed-off-by: Dominique Fuchs <32204802+DominiqueFuchs@users.noreply.github.com>
This commit is contained in:
Dominique Fuchs 2019-09-20 18:50:32 +02:00
parent 2b88ea390c
commit 0ff91574d2

View file

@ -205,13 +205,10 @@ void ShareUserGroupWidget::slotSharesFetched(const QList<QSharedPointer<Share>>
}
// the owner of the file that shared it first
if(x == 0 && !share->getUidOwner().isEmpty()){
if (_account->credentials()->user() == share->getUidOwner()) {
_ui->mainOwnerLabel->setText(QString("You shared this file"));
} else {
// leave out if it's the current user
if(x == 0 && !share->getUidOwner().isEmpty() && !(share->getUidOwner() == _account->credentials()->user())) {
_ui->mainOwnerLabel->setText(QString("Shared with you by ").append(share->getOwnerDisplayName()));
}
}
ShareUserLine *s = new ShareUserLine(share, _maxSharingPermissions, _isFile, _parentScrollArea);
connect(s, &ShareUserLine::resizeRequested, this, &ShareUserGroupWidget::slotAdjustScrollWidgetSize);