# HG changeset patch # User Kim Alvefur # Date 1683568630 -7200 # Node ID b40299bbdf14e7254ce81f26d330cff61cf524b0 # Parent 1c52efb6fd4218aa22cb8da44a8fbfc3d8371042 mod_auth_oauth_external: Fix missing import of util.jid diff -r 1c52efb6fd42 -r b40299bbdf14 mod_auth_oauth_external/mod_auth_oauth_external.lua --- a/mod_auth_oauth_external/mod_auth_oauth_external.lua Sun May 07 20:44:44 2023 +0200 +++ b/mod_auth_oauth_external/mod_auth_oauth_external.lua Mon May 08 19:57:10 2023 +0200 @@ -1,5 +1,6 @@ local http = require "net.http"; local async = require "util.async"; +local jid = require "util.jid"; local json = require "util.json"; local sasl = require "util.sasl";