-
-
+
Username
Login to your account
- CANCEL
- SAVE
+
+ CANCEL
+
+ SAVE
diff --git a/frontend/src/app/routes/view/view-speeddial/view-speeddial.component.ts b/frontend/src/app/routes/view/view-speeddial/view-speeddial.component.ts
index 56a1030d..54b1632a 100644
--- a/frontend/src/app/routes/view/view-speeddial/view-speeddial.component.ts
+++ b/frontend/src/app/routes/view/view-speeddial/view-speeddial.component.ts
@@ -93,10 +93,7 @@ export class ViewSpeeddialComponent implements OnInit {
if (this.image === null) return;
this.downloadService.downloadFile(
- this.imageService.CreateImageLinksFromID(
- this.image?.id,
- this.selectedFormat,
- ).source,
+ this.imageService.GetImageURL(this.image?.id, this.selectedFormat),
);
}
@@ -104,10 +101,7 @@ export class ViewSpeeddialComponent implements OnInit {
if (this.image === null) return;
this.downloadService.shareFile(
- this.imageService.CreateImageLinksFromID(
- this.image?.id,
- this.selectedFormat,
- ).source,
+ this.imageService.GetImageURL(this.image?.id, this.selectedFormat),
);
}
diff --git a/frontend/src/app/routes/view/view.component.html b/frontend/src/app/routes/view/view.component.html
index a9a1b163..75aa2ec8 100644
--- a/frontend/src/app/routes/view/view.component.html
+++ b/frontend/src/app/routes/view/view.component.html
@@ -26,7 +26,7 @@