From a6c803a17dc7e4306c98fd8812878cddf4af8e5c Mon Sep 17 00:00:00 2001 From: Jonathan Leitschuh Date: Wed, 15 Jan 2020 12:10:41 -0500 Subject: [PATCH] Use HTTPS do download confusables --- update.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.js b/update.js index 0646e2f..cf01aa3 100644 --- a/update.js +++ b/update.js @@ -9,7 +9,7 @@ const fs = require('fs'); const path = require('path'); -const URL = 'http://www.unicode.org/Public/security/latest/confusables.txt'; +const URL = 'https://www.unicode.org/Public/security/latest/confusables.txt'; const SAVE_PATH = path.join(__dirname, 'data.json');