Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(sharing): Fix non-existent toen shares
Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal committed Sep 20, 2024
commit 0a1d8440ceda16b02156d294b413e090b9f92e11
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