diff options
author | Matthew Wild <mwild1@gmail.com> | 2023-03-15 12:02:23 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2023-03-15 12:02:23 +0000 |
commit | 944c25f3522f0ae649b2e9d04729bf2278387744 (patch) | |
tree | 6e90ffe071283cef61fec345011325bdfb19e4fc | |
parent | 9dedc78f3c9c8b4587dfa8ff014c521fe6cb1d2c (diff) | |
download | prosody-944c25f3522f0ae649b2e9d04729bf2278387744.tar.gz prosody-944c25f3522f0ae649b2e9d04729bf2278387744.zip |
util.sasl.oauthbearer: Fix syntax error in b796e08e6376
-rw-r--r-- | util/sasl/oauthbearer.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sasl/oauthbearer.lua b/util/sasl/oauthbearer.lua index 5cce2ef7..939c5385 100644 --- a/util/sasl/oauthbearer.lua +++ b/util/sasl/oauthbearer.lua @@ -75,7 +75,7 @@ local function oauthbearer(self, message) self.resource = token_info.resource; self.role = token_info.role; - self.token_info token_info; + self.token_info = token_info; return "success"; end |