Skip to content

Commit

Permalink
fix: duplicate @@download/file and @@display-file/file for anonymous …
Browse files Browse the repository at this point in the history
…users
  • Loading branch information
giuliaghisini committed Nov 26, 2024
1 parent a6610ab commit 62a5e32
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* CUSTOMIZATIONS:
* - aggiunto icona per link esterni
* - aggiunto title informativo per link esterni
* - aggiunta condizione per non avere un duplicato di @@download/file p @@display-file/file, perchè su io-sanità arriva dal BE anche per gli anonimi
*/

import React from 'react';
Expand Down Expand Up @@ -62,14 +63,16 @@ const UniversalLink = ({
//case: item of type 'File'
if (
!token &&
config.settings.downloadableObjects.includes(item['@type'])
config.settings.downloadableObjects.includes(item['@type']) &&
url.indexOf('@@download') < 0 //aggiunta condizione per non avere un duplicato di @@download/file, perchè su io-sanità arriva dal BE anche per gli anonimi
) {
url = `${url}/@@download/file`;
}

if (
!token &&
config.settings.viewableInBrowserObjects.includes(item['@type'])
config.settings.viewableInBrowserObjects.includes(item['@type']) &&
url.indexOf('@@display-file') < 0 //aggiunta condizione per non avere un duplicato di @@display-file/file, perchè su io-sanità arriva dal BE anche per gli anonimi
) {
url = `${url}/@@display-file/file`;
}
Expand Down

0 comments on commit 62a5e32

Please sign in to comment.