diff --git a/lua/cfc_http_restrictions/shared/url.lua b/lua/cfc_http_restrictions/shared/url.lua index a0d5204..1785bed 100644 --- a/lua/cfc_http_restrictions/shared/url.lua +++ b/lua/cfc_http_restrictions/shared/url.lua @@ -59,18 +59,11 @@ function CFCHTTP.ReplaceURLs( text, f ) return html end ----@type table -local parsedAddressCache = {} - ---@param url string ---@return string|nil function CFCHTTP.GetAddress( url ) if not url then return end - local cached = parsedAddressCache[url] - if cached then return cached end - local data = CFCHTTP.ParseURL( url ) - parsedAddressCache[url] = data.address return data.address end