From e02760dfb121de715e5207ea0b2e4c3008d9d25c Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Fri, 25 Mar 2022 08:14:25 +1100 Subject: [PATCH] Support Internet Explorer 3.0 for windows 95 --- src/Http_Worker.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Http_Worker.c b/src/Http_Worker.c index a0bf98a8a..53ece16cf 100644 --- a/src/Http_Worker.c +++ b/src/Http_Worker.c @@ -484,6 +484,8 @@ static void HttpCache_MakeEntry(const cc_string* url, struct HttpCacheEntry* ent String_UNSAFE_Separate(&path, '/', &addr, &_resource); String_UNSAFE_Separate(&addr, ':', &name, &port); + + String_Append(resource, '/'); /* Address may have unicode characters - need to percent encode them */ HttpCache_UrlEncodeUrl(resource, &_resource);