Skip to content

Commit

Permalink
Fixed getImages urls
Browse files Browse the repository at this point in the history
No more "https:https://"
Will this work tomorrow, i don't know
  • Loading branch information
Darkangeel-hd committed Apr 15, 2023
1 parent cef7574 commit 6c44d5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controllers/UtilsController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`,
};
});

Expand Down

0 comments on commit 6c44d5a

Please sign in to comment.