changed chatty-pub-files url to be insecure

This commit is contained in:
كارل مبارك 2023-09-15 15:20:23 +02:00
parent 3c320763fe
commit d64ce5261d
2 changed files with 12 additions and 12 deletions

View file

@ -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);

View file

@ -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;