Skip to content

Commit

Permalink
fix(sharing): Fix non-existent toen shares
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal committed Sep 20, 2024
1 parent fd576ce commit 0a1d844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/files_sharing/src/components/SharingEntryLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ export default {
* @return {string}
*/
shareLink() {
return generateUrl('/s/{toen}', { token: this.share.token }, { baseURL: getBaseUrl() })
return generateUrl('/s/{token}', { token: this.share.token }, { baseURL: getBaseUrl() })
},
/**
Expand Down

0 comments on commit 0a1d844

Please sign in to comment.