From 8077a9f5cfeb27ff76bd4fbcb611a021f2220d7b Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sat, 14 Jan 2023 07:44:51 +1100 Subject: [PATCH] Temp download from resource server over https --- src/Resources.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Resources.c b/src/Resources.c index 6a80325e8..0d0038a93 100644 --- a/src/Resources.c +++ b/src/Resources.c @@ -84,7 +84,7 @@ CC_NOINLINE static int MusicResource_Download(const char* hash) { cc_string url; char urlBuffer[URL_MAX_SIZE]; String_InitArray(url, urlBuffer); - String_Format3(&url, "http://resources.download.minecraft.net/%r%r/%c", + String_Format3(&url, "https://resources.download.minecraft.net/%r%r/%c", &hash[0], &hash[1], hash); return Http_AsyncGetData(&url, 0); }