From 9fea21d761a4ba5ae091e15ce2bb820a75325032 Mon Sep 17 00:00:00 2001 From: Manuel Kasper Date: Tue, 2 Aug 2022 13:57:42 +0200 Subject: [PATCH] Update URL --- src/mixins/photos.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mixins/photos.js b/src/mixins/photos.js index 6bb5d20..ceb7bc7 100644 --- a/src/mixins/photos.js +++ b/src/mixins/photos.js @@ -2,7 +2,7 @@ export default { methods: { photoSrc (photo, size) { if (size === 'original') { - return 'https://sotlas.s3.eu-central-003.backblazeb2.com/' + photo.filename + return 'https://sotlas-photos.s3.eu-central-003.backblazeb2.com/original/' + photo.filename } else { return 'https://images.sotl.as/photos/' + size + '/' + photo.filename.substring(0, 2) + '/' + photo.filename }