From bb67448328b4c2d232aab3b28b8018f8f2589352 Mon Sep 17 00:00:00 2001 From: Goh Jia Hao Date: Thu, 29 Mar 2018 19:38:04 -0700 Subject: [PATCH] Fix infer icon url #529 --- src/infer/inferIcon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/infer/inferIcon.js b/src/infer/inferIcon.js index a29cf6a..d7cbe9b 100644 --- a/src/infer/inferIcon.js +++ b/src/infer/inferIcon.js @@ -48,7 +48,7 @@ function mapIconWithMatchScore(fileIndex, targetUrl) { function inferIconFromStore(targetUrl, platform) { const allowedFormats = new Set(allowedIconFormats(platform)); - return gitCloud('http://jiahaog.com/nativefier-icons/') + return gitCloud('https://jiahaog.github.io/nativefier-icons/') .then((fileIndex) => { const iconWithScores = mapIconWithMatchScore(fileIndex, targetUrl); const maxScore = getMaxMatchScore(iconWithScores);