fix: strip embedded credentials

This commit is contained in:
Yocraft-2000
2026-07-18 14:47:23 +02:00
parent eb8a01f5e1
commit c786561143
+3
View File
@@ -28,6 +28,9 @@ local links = loadLinks()
local function extractDomain(url)
local domain = url:match("^https?://([^/]+)")
if domain then
domain = domain:gsub("^.*@", "")
end
return domain
end