Skip to content

Commit

Permalink
Merge pull request #6534 from owncloud/share_thumbnails
Browse files Browse the repository at this point in the history
Fix #5310: Load thumbnails only for accepted shares
  • Loading branch information
pascalwengerter committed Mar 4, 2022
2 parents d0cc48a + 0d75482 commit 70709ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web-app-files/src/views/SharedWithMe.vue
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ export default {
}
},
displayThumbnails() {
return !this.configuration.options.disablePreviews
return !this.configuration.options.disablePreviews && this.viewMode === ShareStatus.accepted
}
},
Expand Down

0 comments on commit 70709ee

Please sign in to comment.