diff options
author | Minteck <contact@minteck.org> | 2022-05-06 08:40:13 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-05-06 08:40:13 +0200 |
commit | f64842e66a4b57c4ec624bea28faa46ccbf605cb (patch) | |
tree | 6b72d44c4069c8cf63c938a3a4d74ef59911cef2 | |
parent | 69ebb00b6e91dea241e87d9c770104f6b070c464 (diff) | |
download | ember-f64842e66a4b57c4ec624bea28faa46ccbf605cb.tar.gz ember-f64842e66a4b57c4ec624bea28faa46ccbf605cb.tar.bz2 ember-f64842e66a4b57c4ec624bea28faa46ccbf605cb.zip |
Fix HTTP resources on projects, attempt 2
-rw-r--r-- | includes/fetcher/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
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], |