From f64842e66a4b57c4ec624bea28faa46ccbf605cb Mon Sep 17 00:00:00 2001 From: Minteck Date: Fri, 6 May 2022 08:40:13 +0200 Subject: Fix HTTP resources on projects, attempt 2 --- includes/fetcher/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/fetcher/index.js b/includes/fetcher/index.js index 5c8a4e4..165053e 100644 --- a/includes/fetcher/index.js +++ b/includes/fetcher/index.js @@ -33,7 +33,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