From 69ebb00b6e91dea241e87d9c770104f6b070c464 Mon Sep 17 00:00:00 2001 From: Minteck Date: Fri, 6 May 2022 08:24:20 +0200 Subject: Fix HTTP resources on projects --- assets/.DS_Store | Bin 6148 -> 6148 bytes includes/fetcher/index.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/.DS_Store b/assets/.DS_Store index cba4e70..00c8244 100644 Binary files a/assets/.DS_Store and b/assets/.DS_Store differ diff --git a/includes/fetcher/index.js b/includes/fetcher/index.js index 631a5e1..5c8a4e4 100644 --- a/includes/fetcher/index.js +++ b/includes/fetcher/index.js @@ -77,7 +77,7 @@ issues: null, vcs: project.http_url_to_repo, web: project.web_url, - icon: project.avatar_url, + icon: project.avatar_url.replace("http://", "https://"), showcase: project.topics.includes("Showcase"), date: project.last_activity_at, event: (await axios.get(`https://gitlab.minteck.org/api/v4/projects/${project.id}/events`)).data[0], -- cgit