diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-01-22 13:13:41 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-01-22 15:56:42 +0100 |
commit | e5445ccbba7c552ca152d9e1c9b5b82e9be5187f (patch) | |
tree | 5970853d0f834a19f37d53debc467be5eed1debd /apps/files_sharing/js/sharebreadcrumbview.js | |
parent | b1d4c3f50b00457c1ac10949df4ed5cf9adc9906 (diff) | |
download | nextcloud-server-e5445ccbba7c552ca152d9e1c9b5b82e9be5187f.tar.gz nextcloud-server-e5445ccbba7c552ca152d9e1c9b5b82e9be5187f.zip |
Call proper function when fetching link shares in the breadcrumb view
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/files_sharing/js/sharebreadcrumbview.js')
-rw-r--r-- | apps/files_sharing/js/sharebreadcrumbview.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/js/sharebreadcrumbview.js b/apps/files_sharing/js/sharebreadcrumbview.js index 64d2df52d2c..17e3eae0bf5 100644 --- a/apps/files_sharing/js/sharebreadcrumbview.js +++ b/apps/files_sharing/js/sharebreadcrumbview.js @@ -84,7 +84,7 @@ } } - if (shareModel.hasLinkShare()) { + if (shareModel.hasLinkShares()) { shareTypes.push(OC.Share.SHARE_TYPE_LINK); } |