Software / code / prosody
Changeset
12839:7db1c1da7bfd
util.paseto: Fix omitted parameter
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Fri, 13 Jan 2023 14:36:36 +0000 |
| parents | 12838:2e71b76ac299 |
| children | 12840:33d902b093f0 |
| files | util/paseto.lua |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/util/paseto.lua Fri Jan 13 14:35:01 2023 +0000 +++ b/util/paseto.lua Fri Jan 13 14:36:36 2023 +0000 @@ -111,7 +111,7 @@ end function v4_public.new_verifier(public_key_pem, options) - return (select(2, v4_public.init(public_key_pem, options))); + return (select(2, v4_public.init(nil, public_key_pem, options))); end return {