From 6c44d5a7128254574ab605b5d54ee87f3e8565fd Mon Sep 17 00:00:00 2001 From: Darkangeel_hd Date: Sat, 15 Apr 2023 02:14:33 +0200 Subject: [PATCH] Fixed getImages urls No more "https:https://" Will this work tomorrow, i don't know --- src/controllers/UtilsController.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/controllers/UtilsController.ts b/src/controllers/UtilsController.ts index f76917e..ed7489c 100644 --- a/src/controllers/UtilsController.ts +++ b/src/controllers/UtilsController.ts @@ -243,8 +243,8 @@ export default class UtilsController { const results: any[] = data.data.result.items.map((item: any) => { return { type: item.thumb_type, - thumbnail: `https:${item.thumbnail}`, - fullsize: `https:${item.media_fullsize}`, + thumbnail: `${item.thumbnail}`, + fullsize: `${item.media_fullsize}`, }; });