# HG changeset patch # User Kim Alvefur # Date 1725715223 -7200 # Node ID 7308ec4aaad148abbbf7663e11d687907938f690 # Parent 538f468f9a653bf759f052df6614a57c59b80dd7 mod_http_oauth2: Fix error due to mistake in 5f8a306c8306 Was passing the table instead of the host diff -r 538f468f9a65 -r 7308ec4aaad1 mod_http_oauth2/mod_http_oauth2.lua --- a/mod_http_oauth2/mod_http_oauth2.lua Sat Aug 31 14:46:33 2024 +0200 +++ b/mod_http_oauth2/mod_http_oauth2.lua Sat Sep 07 15:20:23 2024 +0200 @@ -42,7 +42,7 @@ if encodings.stringprep.nameprep(url_parts.host) ~= url_parts.host then return false; end - if not encodings.idna.to_ascii(url_parts) then + if not encodings.idna.to_ascii(url_parts.host) then return false; end end