From f86b6936d238a79e16758b57b516bc13fd82ebce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D9=83=D8=A7=D8=B1=D9=84=20=D9=85=D8=A8=D8=A7=D8=B1=D9=83?= Date: Fri, 15 Sep 2023 17:14:51 +0200 Subject: [PATCH] changed chatty-pub-files url to be secure --- src/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index 172c48d..0d6dd9d 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -62,7 +62,7 @@ let font = (content) => { let filename = getFilename(path); let ext = filename.split(".").pop(); font.src = - "http://chatty-pub-files.hackersanddesigners.nl/files" + path; + "https://chatty-pub-files.hackersanddesigners.nl/files" + path; font.format = getFormat(ext); font.family = filename.replace(".", "_"); return font;