Software /
code /
prosody-modules
Diff
mod_auth_oauth_external/mod_auth_oauth_external.lua @ 5433:b40299bbdf14
mod_auth_oauth_external: Fix missing import of util.jid
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 08 May 2023 19:57:10 +0200 |
parent | 5346:d9bc8712a745 |
child | 5434:92ad8f03f225 |
line wrap: on
line diff
--- 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";