changed chatty-pub-files url to be insecure
This commit is contained in:
parent
3c320763fe
commit
d64ce5261d
2 changed files with 12 additions and 12 deletions
|
|
@ -60,7 +60,7 @@ export default {
|
||||||
// with this: https://chatty-pub-files.hackersanddesigners.nl/files/
|
// with this: https://chatty-pub-files.hackersanddesigners.nl/files/
|
||||||
c = c.replaceAll(
|
c = c.replaceAll(
|
||||||
url + "/user_uploads/",
|
url + "/user_uploads/",
|
||||||
"https://chatty-pub-files.hackersanddesigners.nl/files/"
|
"http://chatty-pub-files.hackersanddesigners.nl/files/"
|
||||||
);
|
);
|
||||||
|
|
||||||
c = this.replaceAllEmojiCodes(c);
|
c = this.replaceAllEmojiCodes(c);
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,7 @@ let font = (content) => {
|
||||||
let filename = getFilename(path);
|
let filename = getFilename(path);
|
||||||
let ext = filename.split(".").pop();
|
let ext = filename.split(".").pop();
|
||||||
font.src =
|
font.src =
|
||||||
"https://chatty-pub-files.hackersanddesigners.nl/files" + path;
|
"http://chatty-pub-files.hackersanddesigners.nl/files" + path;
|
||||||
font.format = getFormat(ext);
|
font.format = getFormat(ext);
|
||||||
font.family = filename.replace(".", "_");
|
font.family = filename.replace(".", "_");
|
||||||
return font;
|
return font;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue