Skip to content

Commit

Permalink
fix base url
Browse files Browse the repository at this point in the history
  • Loading branch information
maede97 committed Oct 19, 2024
1 parent 1944d1a commit 971ab59
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class DownloadDataComponent implements OnInit {
// Get UUID from the URL
this.uuid = activatedRoute.snapshot.url[1].toString();
this.download_link = DownloadDataComponent.baseURL + 'download/' + this.uuid;
this.retrieve_link = DownloadDataComponent.baseURL + 'retrieve/' + this.uuid;
this.retrieve_link = window.location.origin + '/retrieve/' + this.uuid;
this.qr_link = DownloadDataComponent.baseURL + 'qr/' + this.uuid;

// the data is available for 10 minutes
Expand Down

0 comments on commit 971ab59

Please sign in to comment.