Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_sharing/src/views/SharingTab.vue')
-rw-r--r--apps/files_sharing/src/views/SharingTab.vue13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/files_sharing/src/views/SharingTab.vue b/apps/files_sharing/src/views/SharingTab.vue
index e08ce261522..bdc81c91ccc 100644
--- a/apps/files_sharing/src/views/SharingTab.vue
+++ b/apps/files_sharing/src/views/SharingTab.vue
@@ -293,6 +293,19 @@ export default {
// interval update
this.expirationInterval = setInterval(this.updateExpirationSubtitle, 10000, share)
}
+ } else if (this.fileInfo && this.fileInfo.shareOwnerId !== undefined ? this.fileInfo.shareOwnerId !== OC.currentUser : false) {
+ // Fallback to compare owner and current user.
+ this.sharedWithMe = {
+ displayName: this.fileInfo.shareOwner,
+ title: t(
+ 'files_sharing',
+ 'Shared with you by {owner}',
+ { owner: this.fileInfo.shareOwner },
+ undefined,
+ { escape: false }
+ ),
+ user: this.fileInfo.shareOwnerId,
+ }
}
},