mod_auth_oauth_external: Fix missing import of util.jid
authorKim Alvefur <zash@zash.se>
Mon, 08 May 2023 19:57:10 +0200
changeset 5437 b40299bbdf14
parent 5436 1c52efb6fd42
child 5438 92ad8f03f225
mod_auth_oauth_external: Fix missing import of util.jid
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";