feat(dashboard): update getShortLink to use HTTPS

This commit is contained in:
Jan K9f 2025-01-21 11:47:04 +01:00
parent c8b005ec60
commit 8b08c6616c
Signed by: jank
GPG key ID: 50620ADD22CD330B

View file

@ -25,7 +25,7 @@ export class DashboardComponent {
}
getShortLink(id: string): string {
return window.location.hostname + '/' + id;
return "https://" + window.location.hostname + '/' + id;
}
ngOnInit(): void {