diff options
author | Minteck <contact@minteck.org> | 2022-05-06 08:24:20 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-05-06 08:24:20 +0200 |
commit | 69ebb00b6e91dea241e87d9c770104f6b070c464 (patch) | |
tree | 5573cf64e42906973fdedbbc807dfc91321f1a40 /includes/fetcher/index.js | |
parent | 4810b86a6d81f5b8126bff900571fb3eddc9e5da (diff) | |
download | ember-69ebb00b6e91dea241e87d9c770104f6b070c464.tar.gz ember-69ebb00b6e91dea241e87d9c770104f6b070c464.tar.bz2 ember-69ebb00b6e91dea241e87d9c770104f6b070c464.zip |
Fix HTTP resources on projects
Diffstat (limited to 'includes/fetcher/index.js')
-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 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], |